aboutsummaryrefslogtreecommitdiff
path: root/pd/portaudio/portmidi-macosx/porttime.h
diff options
context:
space:
mode:
Diffstat (limited to 'pd/portaudio/portmidi-macosx/porttime.h')
-rw-r--r--pd/portaudio/portmidi-macosx/porttime.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/pd/portaudio/portmidi-macosx/porttime.h b/pd/portaudio/portmidi-macosx/porttime.h
deleted file mode 100644
index 8592106d..00000000
--- a/pd/portaudio/portmidi-macosx/porttime.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* porttime.h -- portable interface to millisecond timer */
-
-/* Should there be a way to choose the source of time here? */
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-
-typedef enum {
- ptNoError = 0,
- ptHostError = -10000,
- ptAlreadyStarted,
- ptAlreadyStopped
-} PtError;
-
-
-typedef long PtTimestamp;
-
-typedef int (PtCallback)( PtTimestamp timestamp, void *userData );
-
-
-PtError Pt_Start(int resolution, PtCallback *callback, void *userData);
-PtError Pt_Stop();
-int Pt_Started();
-PtTimestamp Pt_Time();
-
-#ifdef __cplusplus
-}
-#endif