Fix recv prototype for WSARecvEx.

This commit is contained in:
Francois Gouget 2001-09-14 01:00:20 +00:00 committed by Alexandre Julliard
parent 60a83ef0f1
commit 96ffcae371
1 changed files with 3 additions and 0 deletions

View File

@ -17,6 +17,7 @@
Until that happens we need this hack.
*/
#define socket linux_socket
#define recv linux_recv
/* */
#include "config.h"
@ -49,7 +50,9 @@
/* FIXME: The rest of the socket() cdecl<->stdapi stack corruption problem
discussed above. */
#undef socket
#undef recv
extern SOCKET WINAPI socket(INT af, INT type, INT protocol);
extern SOCKET WINAPI recv(SOCKET,char*,int,int);
/* */