mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 17:10:22 +00:00
[PSDK]
* Make WS2TCPIP_INLINE and MSTCPIP_INLINE static inline instead of extern inline. This way we don't run into any warnings. svn path=/trunk/; revision=59596
This commit is contained in:
parent
a747c72156
commit
01ec713291
3 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ extern "C" {
|
|||
#ifdef _MSC_VER
|
||||
#define MSTCPIP_INLINE __inline
|
||||
#else
|
||||
#define MSTCPIP_INLINE extern inline
|
||||
#define MSTCPIP_INLINE static inline
|
||||
#endif
|
||||
|
||||
#include <nldef.h>
|
||||
|
|
|
@ -13,7 +13,7 @@ extern "C" {
|
|||
#ifdef _MSC_VER
|
||||
#define WS2TCPIP_INLINE __inline
|
||||
#else
|
||||
#define WS2TCPIP_INLINE extern inline
|
||||
#define WS2TCPIP_INLINE static inline
|
||||
#endif
|
||||
|
||||
#include <in6addr.h>
|
||||
|
|
|
@ -24,7 +24,7 @@ extern "C" {
|
|||
#ifdef _MSC_VER
|
||||
#define WS2TCPIP_INLINE __inline
|
||||
#else
|
||||
#define WS2TCPIP_INLINE extern inline
|
||||
#define WS2TCPIP_INLINE static inline
|
||||
#endif
|
||||
|
||||
/* getaddrinfo error codes */
|
||||
|
|
Loading…
Reference in a new issue