Changeset 6201 for trunk/src/wsock32/wsock32.h
- Timestamp:
- Jul 7, 2001, 4:29:41 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wsock32/wsock32.h
r6196 r6201 1 /* $Id: wsock32.h,v 1.1 7 2001-07-07 10:44:11 achimha Exp $ */1 /* $Id: wsock32.h,v 1.18 2001-07-07 14:29:41 achimha Exp $ */ 2 2 3 3 /* WSOCK32.H--definitions & conversions for Odin's wsock32.dll. … … 52 52 // WSAAsyncSelect flags 53 53 // also apply to Winsock 2.0 WSAEventSelect 54 #define FD_MAX_EVENTS 10 54 55 #define FD_READ 0x01 55 56 #define FD_WRITE 0x02 … … 249 250 int WSAAsyncSelectWorker(SOCKET s, int mode, int notifyHandle, int notifyData, long lEventMask); 250 251 252 typedef struct _WSANETWORKEVENTS 253 { 254 long lNetworkEvents; 255 int iErrorCode[FD_MAX_EVENTS]; 256 } WSANETWORKEVENTS, *LPWSANETWORKEVENTS; 257 int WSAEnumNetworkEventsWorker(SOCKET s, WSAEVENT hEvent, LPWSANETWORKEVENTS lpEvent); 258 251 259 #endif /* _WINSOCK32CONST_ */ 252 260
Note:
See TracChangeset
for help on using the changeset viewer.