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…
Reference in New Issue