Author: tkreuzer
Date: Fri Jun 8 13:13:31 2012
New Revision: 56711
URL:
http://svn.reactos.org/svn/reactos?rev=56711&view=rev
Log:
[PSDK]
Fix WS2TCPIP_INLINE in ws2tcpip.h as well
Modified:
trunk/reactos/include/psdk/ws2tcpip.h
Modified: trunk/reactos/include/psdk/ws2tcpip.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/ws2tcpip.h?re…
==============================================================================
--- trunk/reactos/include/psdk/ws2tcpip.h [iso-8859-1] (original)
+++ trunk/reactos/include/psdk/ws2tcpip.h [iso-8859-1] Fri Jun 8 13:13:31 2012
@@ -24,7 +24,7 @@
#ifdef _MSC_VER
#define WS2TCPIP_INLINE __inline
#else
-#define WS2TCPIP_INLINE static inline
+#define WS2TCPIP_INLINE extern inline
#endif
/* getaddrinfo error codes */
@@ -758,7 +758,7 @@
{
DWORD bytes;
- return WSAIoctl(s, SIO_IDEAL_SEND_BACKLOG_QUERY,
+ return WSAIoctl(s, SIO_IDEAL_SEND_BACKLOG_QUERY,
NULL, 0, pISB, sizeof(*pISB), &bytes, NULL, NULL);
}
@@ -771,8 +771,8 @@
{
DWORD bytes;
- return WSAIoctl(s, SIO_IDEAL_SEND_BACKLOG_CHANGE,
- NULL, 0, NULL, 0, &bytes,
+ return WSAIoctl(s, SIO_IDEAL_SEND_BACKLOG_CHANGE,
+ NULL, 0, NULL, 0, &bytes,
lpOverlapped, lpCompletionRoutine);
}