windef.h: Add a definition for FILETIME.

oldstable
Mike McCormack 2006-08-23 16:12:47 +09:00 committed by Alexandre Julliard
parent 2dca7aa2e2
commit b346d0f248
1 changed files with 11 additions and 0 deletions

View File

@ -355,6 +355,17 @@ typedef struct tagPOINTS
#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
{