* 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:
parent
2496a3637f
commit
2bcd6fb89d
|
@ -1,3 +1,9 @@
|
|||
Sat Sep 1 10:40:37 2001 Christopher Faylor <cgf@cygnus.com>
|
||||
|
||||
* include/winnt.h: Use defined(_ANONYMOUS_STRUCT) to determine if
|
||||
anonymous structs are available rather than just testing preprocessor
|
||||
variable directly.
|
||||
|
||||
Fri Aug 31 21:46:00 2001 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* include/winnt.h: Change definition of `SYSTEM_LUID' to comply
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue