Module: wine Branch: master Commit: b346d0f248381c54da93521fbd68688e43954bd6 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=b346d0f248381c54da93521f...
Author: Mike McCormack mike@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 {