blob: 8592106d673725dc26938f7f291ad8f11aaa0a9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* 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
|