mirror of
https://github.com/reactos/wine.git
synced 2025-02-02 10:12:01 +00:00
Fix FILETIME to match winbase.h on big-endian machines.
This commit is contained in:
parent
2439b5fdda
commit
ffebbae54f
@ -58,8 +58,13 @@ typedef CY CURRENCY;
|
||||
#define _FILETIME_
|
||||
typedef struct _FILETIME
|
||||
{
|
||||
#ifdef WORDS_BIGENDIAN
|
||||
DWORD dwHighDateTime;
|
||||
DWORD dwLowDateTime;
|
||||
#else
|
||||
DWORD dwLowDateTime;
|
||||
DWORD dwHighDateTime;
|
||||
#endif
|
||||
} FILETIME, *PFILETIME, *LPFILETIME;
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user