Commit b346d0f2 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

windef.h: Add a definition for FILETIME.

parent 2dca7aa2
...@@ -355,6 +355,17 @@ typedef struct tagPOINTS ...@@ -355,6 +355,17 @@ typedef struct tagPOINTS
#endif #endif
} POINTS, *PPOINTS, *LPPOINTS; } 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 */ /* The RECT structure */
typedef struct tagRECT typedef struct tagRECT
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment