Skip to content
Snippets Groups Projects
Commit 96ffcae3 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard
Browse files

Fix recv prototype for WSARecvEx.

parent 60a83ef0
No related branches found
No related tags found
No related merge requests found
......@@ -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);
/* */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment