wininet & winhttp: Remove the MSG_WAITALL definition as it is not needed.

This commit is contained in:
Francois Gouget 2008-12-12 10:30:09 +01:00 committed by Alexandre Julliard
parent 7271ed5532
commit a6c07ffba4
2 changed files with 1 additions and 8 deletions

View File

@ -34,9 +34,6 @@
#endif
#if defined(__MINGW32__) || defined (_MSC_VER)
# include <ws2tcpip.h>
# ifndef MSG_WAITALL
# define MSG_WAITALL 0
# endif
#else
# define closesocket close
# define ioctlsocket ioctl

View File

@ -42,11 +42,7 @@
# include <sys/socket.h>
#endif
#if defined(__MINGW32__) || defined (_MSC_VER)
#ifndef MSG_WAITALL
#define MSG_WAITALL 0
#endif
#else
#if !defined(__MINGW32__) && !defined(_MSC_VER)
#define closesocket close
#define ioctlsocket ioctl
#endif /* __MINGW32__ */