mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
Fix for anonymous struct definition, which made at least /drivers/net/dd/pcnet uncompilable
svn path=/trunk/; revision=7339
This commit is contained in:
parent
49f967d0ed
commit
55128bd027
1 changed files with 5 additions and 6 deletions
|
@ -143,18 +143,17 @@ typedef DWORD STDCALL_FUNC (*PTHREAD_START_ROUTINE) (LPVOID);
|
|||
|
||||
typedef union _LARGE_INTEGER
|
||||
{
|
||||
struct
|
||||
{
|
||||
DWORD LowPart;
|
||||
LONG HighPart;
|
||||
} u;
|
||||
#ifdef ANONYMOUSUNIONS
|
||||
struct
|
||||
{
|
||||
DWORD LowPart;
|
||||
LONG HighPart;
|
||||
};
|
||||
#else
|
||||
struct
|
||||
{
|
||||
DWORD LowPart;
|
||||
LONG HighPart;
|
||||
} u;
|
||||
#endif /* ANONYMOUSUNIONS */
|
||||
LONGLONG QuadPart;
|
||||
} LARGE_INTEGER, *PLARGE_INTEGER;
|
||||
|
|
Loading…
Reference in a new issue