diff options
author | Earnie Boyd <earnie@users.sf.net> | 2001-09-19 23:56:12 +0000 |
---|---|---|
committer | Earnie Boyd <earnie@users.sf.net> | 2001-09-19 23:56:12 +0000 |
commit | 7141383a860eccad34c308500297a138ffa0dcc0 (patch) | |
tree | 8510c0fb70b72592b720b424e8c41d07c383e041 /winsup/w32api/include/winnt.h | |
parent | 2f02f2183109163720fa9f3d288c66ab82dcd532 (diff) | |
download | newlib-7141383a860eccad34c308500297a138ffa0dcc0.zip newlib-7141383a860eccad34c308500297a138ffa0dcc0.tar.gz newlib-7141383a860eccad34c308500297a138ffa0dcc0.tar.bz2 |
2001-09-18 Danny Smith <dannysmith@users.sourceforge.net>
* include/winnt.h (_[U]LARGE_INTEGER): Mark nameless structure
field as _ANONYMOUS_STRUCT.
* include/setupapi.h (SP_DEVINSTALL_PARAMS): Add missing typedef
for UNICODE.
* include/ipexport.h (icmp_echo_reply): Remove extra ';'.
* lib/makefile.in: Add -pedantic switch to TEST_OPTIONS for header
test.
2001-09-17 Mattia Barbon <mbarbon@dsi.unive.it>
* include/commctrl.h: Add some ListView constants.
2001-09-17 Earnie Boyd <earnie@sf.net>
* lib/Makefile.in (inst_includedir): Add FIXME and remove the usr/
portion of the directory from the install.
(inst_libdir): Ditto.
* Makefile.in (VERSION): Increment.
* include/w32api.h: Increment version.
Diffstat (limited to 'winsup/w32api/include/winnt.h')
-rw-r--r-- | winsup/w32api/include/winnt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/w32api/include/winnt.h b/winsup/w32api/include/winnt.h index d042192..b12224c 100644 --- a/winsup/w32api/include/winnt.h +++ b/winsup/w32api/include/winnt.h @@ -1706,7 +1706,7 @@ typedef union _LARGE_INTEGER { LONG HighPart; } u; #if ! defined(NONAMELESSUNION) || defined(__cplusplus) - struct { + _ANONYMOUS_STRUCT struct { DWORD LowPart; LONG HighPart; }; @@ -1719,7 +1719,7 @@ typedef union _ULARGE_INTEGER { DWORD HighPart; } u; #if ! defined(NONAMELESSUNION) || defined(__cplusplus) - struct { + _ANONYMOUS_STRUCT struct { DWORD LowPart; DWORD HighPart; }; |