grammar updates
[mono.git] / mono / io-layer / timefuncs.h
index 8cf1fa138421fbd6e19f040a2d1a8e43a728ea8b..6f13e8b13fc0e6c782abba2ee01d047358b50ee3 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * timefuncs.h:  performance timer and other time functions
+ *
+ * Author:
+ *     Dick Porter (dick@ximian.com)
+ *
+ * (C) 2002 Ximian, Inc.
+ */
+
 #ifndef _WAPI_TIME_H_
 #define _WAPI_TIME_H_
 
@@ -5,7 +14,14 @@
 
 #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_ */