Don't run test-318 with gmcs.
[mono.git] / mono / io-layer / timefuncs.h
1 /*
2  * timefuncs.h:  performance timer and other time functions
3  *
4  * Author:
5  *      Dick Porter (dick@ximian.com)
6  *
7  * (C) 2002 Ximian, Inc.
8  */
9
10 #ifndef _WAPI_TIME_H_
11 #define _WAPI_TIME_H_
12
13 #include <glib.h>
14
15 #include "mono/io-layer/wapi.h"
16
17 typedef struct 
18 {
19         guint32 dwLowDateTime;
20         guint32 dwHighDateTime;
21 } WapiFileTime;
22
23 extern gboolean QueryPerformanceCounter(WapiLargeInteger *count);
24 extern gboolean QueryPerformanceFrequency(WapiLargeInteger *freq);
25 extern guint32 GetTickCount (void);
26
27 #endif /* _WAPI_TIME_H_ */