2 * timefuncs.h: performance timer and other time functions
5 * Dick Porter (dick@ximian.com)
7 * (C) 2002 Ximian, Inc.
15 #include "mono/io-layer/wapi.h"
19 /* The typical idiom for this struct is to cast it to and from 64bit
20 * ints, hence the endian switch.
24 #if G_BYTE_ORDER == G_BIG_ENDIAN
25 guint32 dwHighDateTime
;
26 guint32 dwLowDateTime
;
28 guint32 dwLowDateTime
;
29 guint32 dwHighDateTime
;
33 extern gboolean
QueryPerformanceCounter(WapiLargeInteger
*count
);
34 extern gboolean
QueryPerformanceFrequency(WapiLargeInteger
*freq
);
35 extern guint32
GetTickCount (void);
38 #endif /* _WAPI_TIME_H_ */