* include/winnt.h: Use defined(_ANONYMOUS_STRUCT) to determine if anonymous
structs are available rather than just testing preprocessor variable directly.
This commit is contained in:
@ -1705,7 +1705,7 @@ typedef union _LARGE_INTEGER {
|
||||
DWORD LowPart;
|
||||
LONG HighPart;
|
||||
} u;
|
||||
#if _ANONYMOUS_STRUCT || defined __cplusplus
|
||||
#if defined(_ANONYMOUS_STRUCT) || defined(__cplusplus)
|
||||
struct {
|
||||
DWORD LowPart;
|
||||
LONG HighPart;
|
||||
@ -1718,7 +1718,7 @@ typedef union _ULARGE_INTEGER {
|
||||
DWORD LowPart;
|
||||
DWORD HighPart;
|
||||
} u;
|
||||
#if _ANONYMOUS_STRUCT || defined __cplusplus
|
||||
#if defined(_ANONYMOUS_STRUCT) || defined(__cplusplus)
|
||||
struct {
|
||||
DWORD LowPart;
|
||||
DWORD HighPart;
|
||||
|
Reference in New Issue
Block a user