Mike McCormack : windef.h: Add a definition for FILETIME.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Aug 23 05:55:41 CDT 2006


Module: wine
Branch: master
Commit: b346d0f248381c54da93521fbd68688e43954bd6
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=b346d0f248381c54da93521fbd68688e43954bd6

Author: Mike McCormack <mike at codeweavers.com>
Date:   Wed Aug 23 16:12:47 2006 +0900

windef.h: Add a definition for FILETIME.

---

 include/windef.h |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/include/windef.h b/include/windef.h
index d9c0331..850c026 100644
--- a/include/windef.h
+++ b/include/windef.h
@@ -355,6 +355,17 @@ #else
 #endif
 } POINTS, *PPOINTS, *LPPOINTS;
 
+typedef struct _FILETIME {
+#ifdef WORDS_BIGENDIAN
+    DWORD  dwHighDateTime;
+    DWORD  dwLowDateTime;
+#else
+    DWORD  dwLowDateTime;
+    DWORD  dwHighDateTime;
+#endif
+} FILETIME, *PFILETIME, *LPFILETIME;
+#define _FILETIME_
+
 /* The RECT structure */
 typedef struct tagRECT
 {




More information about the wine-cvs mailing list