* config.guess: Remove the \r from the end of line.
* config.sub: Ditto. * include/winnt.h: Allow anonymous struct in [U]LARGE_INTEGER if __cplusplus as well as if _ANONYMOUS_STRUCT. * config.guess: Add the MSYS system. * config.sub: Ditto. * include/winsock.h: Add the __INSIDE_MSYS__ protections. * incldue/winsock2.h: Ditto.
This commit is contained in:
@@ -1705,7 +1705,7 @@ typedef union _LARGE_INTEGER {
|
||||
DWORD LowPart;
|
||||
LONG HighPart;
|
||||
} u;
|
||||
#if _ANONYMOUS_STRUCT
|
||||
#if _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
|
||||
#if _ANONYMOUS_STRUCT || defined __cplusplus
|
||||
struct {
|
||||
DWORD LowPart;
|
||||
DWORD HighPart;
|
||||
|
Reference in New Issue
Block a user