Commit a6c07ffb authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 7271ed55
...@@ -34,9 +34,6 @@ ...@@ -34,9 +34,6 @@
#endif #endif
#if defined(__MINGW32__) || defined (_MSC_VER) #if defined(__MINGW32__) || defined (_MSC_VER)
# include <ws2tcpip.h> # include <ws2tcpip.h>
# ifndef MSG_WAITALL
# define MSG_WAITALL 0
# endif
#else #else
# define closesocket close # define closesocket close
# define ioctlsocket ioctl # define ioctlsocket ioctl
......
...@@ -42,11 +42,7 @@ ...@@ -42,11 +42,7 @@
# include <sys/socket.h> # include <sys/socket.h>
#endif #endif
#if defined(__MINGW32__) || defined (_MSC_VER) #if !defined(__MINGW32__) && !defined(_MSC_VER)
#ifndef MSG_WAITALL
#define MSG_WAITALL 0
#endif
#else
#define closesocket close #define closesocket close
#define ioctlsocket ioctl #define ioctlsocket ioctl
#endif /* __MINGW32__ */ #endif /* __MINGW32__ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment