Module: wine Branch: master Commit: 23063501e51e1e9d70d5feb36abb6bf281d03180 URL: http://source.winehq.org/git/wine.git/?a=commit;h=23063501e51e1e9d70d5feb36a...
Author: Francois Gouget fgouget@free.fr Date: Mon Dec 8 09:20:51 2008 +0100
ws2_32: Add MSG_WAITALL and MSG_INTERRUPT.
---
include/winsock.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/include/winsock.h b/include/winsock.h index dd202ea..4dafb9c 100644 --- a/include/winsock.h +++ b/include/winsock.h @@ -791,6 +791,8 @@ typedef struct WS(WSAData) #define MSG_OOB 0x0001 #define MSG_PEEK 0x0002 #define MSG_DONTROUTE 0x0004 +#define MSG_WAITALL 0x0008 +#define MSG_INTERRUPT 0x0010 #define MSG_PARTIAL 0x8000 #define MSG_MAXIOVLEN 16 #else /* USE_WS_PREFIX */ @@ -799,6 +801,8 @@ typedef struct WS(WSAData) #define WS_MSG_OOB 0x0001 #define WS_MSG_PEEK 0x0002 #define WS_MSG_DONTROUTE 0x0004 +#define WS_MSG_WAITALL 0x0008 +#define WS_MSG_INTERRUPT 0x0010 #define WS_MSG_PARTIAL 0x8000 #define WS_MSG_MAXIOVLEN 16 #endif /* USE_WS_PREFIX */