mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +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
|
#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
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user