mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
windef.h: Add a definition for FILETIME.
This commit is contained in:
parent
2dca7aa2e2
commit
b346d0f248
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user