* include/wsahelp.h (system_header): Add pragma.
* include/ws2spi.h (system_header): Add pragma. * include/rasdlg.h (system_header): Add pragma. * include/rasdlg.h (_RASDLG_H): Define. Define instead of _RASDLG_H_, this is the w32api standard. * include/mlang.h (_MLANG_H): Define. Define instead of _MLANG_H_, this is the w32api standard. * include/setupapi.h (_SETUPAPI_H): Define. Define instead of _SETUPAPI_H_, this is the w32api standard.
This commit is contained in:
parent
3253f21972
commit
285ae543e2
|
@ -1,3 +1,15 @@
|
|||
2006-04-14 Dimitri Papadopoulos <papadopo@users.sourceforge.net>
|
||||
|
||||
* include/wsahelp.h (system_header): Add pragma.
|
||||
* include/ws2spi.h (system_header): Add pragma.
|
||||
* include/rasdlg.h (system_header): Add pragma.
|
||||
* include/rasdlg.h (_RASDLG_H): Define.
|
||||
Define instead of _RASDLG_H_, this is the w32api standard.
|
||||
* include/mlang.h (_MLANG_H): Define.
|
||||
Define instead of _MLANG_H_, this is the w32api standard.
|
||||
* include/setupapi.h (_SETUPAPI_H): Define.
|
||||
Define instead of _SETUPAPI_H_, this is the w32api standard.
|
||||
|
||||
2006-04-14 Dimitri Papadopoulos <papadopo@users.sourceforge.net>
|
||||
|
||||
* include/rpcndr.h (boolean): Add typedef.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef _MLANG_H_
|
||||
#define _MLANG_H_
|
||||
#ifndef _MLANG_H
|
||||
#define _MLANG_H
|
||||
#if __GNUC__ >= 3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
@ -346,5 +346,4 @@ DECLARE_INTERFACE_(IMultiLanguage2,IUnknown)
|
|||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* ndef _MLANG_H_ */
|
||||
#endif
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
#ifndef _RASDLG_H_
|
||||
#define _RASDLG_H_
|
||||
#ifndef _RASDLG_H
|
||||
#define _RASDLG_H
|
||||
#if __GNUC__ >= 3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef _SETUPAPI_H_
|
||||
#define _SETUPAPI_H_
|
||||
#ifndef _SETUPAPI_H
|
||||
#define _SETUPAPI_H
|
||||
#if __GNUC__ >=3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
@ -1573,7 +1573,5 @@ WINSETUPAPI BOOL WINAPI SetupTerminateFileLog(HSPFILELOG);
|
|||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#include <poppack.h>
|
||||
#endif /* _SETUPAPI_H_ */
|
||||
|
||||
#endif
|
||||
|
|
|
@ -17,6 +17,9 @@
|
|||
*/
|
||||
#ifndef _WS2SPI_H
|
||||
#define _WS2SPI_H
|
||||
#if __GNUC__ >= 3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#include <winsock2.h>
|
||||
|
||||
|
@ -196,5 +199,4 @@ INT WSPAPI WSCWriteProviderOrder(LPDWORD,DWORD);
|
|||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#endif /* _WS2SPI_H */
|
||||
#endif
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#ifndef _WSAHELP_H
|
||||
#define _WSAHELP_H
|
||||
#if __GNUC__ >= 3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#include <winsock2.h>
|
||||
#include <ntsecapi.h>
|
||||
|
@ -92,5 +95,4 @@ typedef DWORD (WINAPI *PWSH_GET_WINSOCK_MAPPING)(PWINSOCK_MAPPING,DWORD);
|
|||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#endif /* _WSAHELP_H */
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue