Commit ffebbae5 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

Fix FILETIME to match winbase.h on big-endian machines.

parent 2439b5fd
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment