|
From: Danny S. <dan...@us...> - 2001-08-29 21:41:33
|
Update of /cvsroot/mingw/w32api/include
In directory usw-pr-cvs1:/tmp/cvs-serv29642/w32api/include
Modified Files:
winnt.h
Log Message:
* include/winnt.h: Allow anonymous struct in [U]LARGE_INTEGER
if __cplusplus as well as if _ANONYMOUS_STRUCT.
Index: winnt.h
===================================================================
RCS file: /cvsroot/mingw/w32api/include/winnt.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** winnt.h 2001/08/28 21:56:16 1.5
--- winnt.h 2001/08/29 21:41:30 1.6
***************
*** 1706,1710 ****
LONG HighPart;
} u;
! #if _ANONYMOUS_STRUCT
struct {
DWORD LowPart;
--- 1706,1710 ----
LONG HighPart;
} u;
! #if _ANONYMOUS_STRUCT || defined __cplusplus
struct {
DWORD LowPart;
***************
*** 1719,1723 ****
DWORD HighPart;
} u;
! #if _ANONYMOUS_STRUCT
struct {
DWORD LowPart;
--- 1719,1723 ----
DWORD HighPart;
} u;
! #if _ANONYMOUS_STRUCT || defined __cplusplus
struct {
DWORD LowPart;
|