mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
#include stddef.h in winsock2.h
svn path=/trunk/; revision=6015
This commit is contained in:
parent
205f58421e
commit
afb6548beb
3 changed files with 9 additions and 2 deletions
|
@ -10,7 +10,14 @@
|
|||
#ifndef __WINSOCK2_H
|
||||
#define __WINSOCK2_H
|
||||
|
||||
#ifdef __USE_W32API
|
||||
|
||||
#include_next <winsock2.h>
|
||||
|
||||
#else /* __USE_W32API */
|
||||
|
||||
#include <windows.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
|
@ -1824,6 +1831,8 @@ WSARecvEx(SOCKET s,LPSTR buf,INT len,LPINT flags);
|
|||
};
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#endif /* !__USE_W32API */
|
||||
|
||||
#endif /* __WINSOCK2_H */
|
||||
|
||||
/* EOF */
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
#ifndef __WSAHELP_H
|
||||
#define __WSAHELP_H
|
||||
|
||||
#include <stddef.h>
|
||||
#include <winsock2.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
#ifndef __PACKET32
|
||||
#define __PACKET32
|
||||
|
||||
#include <stddef.h>
|
||||
#include <winsock2.h>
|
||||
|
||||
// Working modes
|
||||
|
|
Loading…
Reference in a new issue