Don't run test-318 with gmcs.
[mono.git] / mono / io-layer / timefuncs.h
index f713d56b6e9a6c7e7f6e4643e59e750f07d8bf18..6f13e8b13fc0e6c782abba2ee01d047358b50ee3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * timefuncs.h:  performance timer functions
+ * timefuncs.h:  performance timer and other time functions
  *
  * Author:
  *     Dick Porter (dick@ximian.com)
 
 #include "mono/io-layer/wapi.h"
 
-gboolean QueryPerformanceCounter(WapiLargeInteger *count);
-gboolean QueryPerformanceFrequency(WapiLargeInteger *freq);
+typedef struct 
+{
+       guint32 dwLowDateTime;
+       guint32 dwHighDateTime;
+} WapiFileTime;
+
+extern gboolean QueryPerformanceCounter(WapiLargeInteger *count);
+extern gboolean QueryPerformanceFrequency(WapiLargeInteger *freq);
+extern guint32 GetTickCount (void);
 
 #endif /* _WAPI_TIME_H_ */