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_
|
#define _FILETIME_
|
||||||
typedef struct _FILETIME
|
typedef struct _FILETIME
|
||||||
{
|
{
|
||||||
|
#ifdef WORDS_BIGENDIAN
|
||||||
|
DWORD dwHighDateTime;
|
||||||
|
DWORD dwLowDateTime;
|
||||||
|
#else
|
||||||
DWORD dwLowDateTime;
|
DWORD dwLowDateTime;
|
||||||
DWORD dwHighDateTime;
|
DWORD dwHighDateTime;
|
||||||
|
#endif
|
||||||
} FILETIME, *PFILETIME, *LPFILETIME;
|
} FILETIME, *PFILETIME, *LPFILETIME;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue