Changeset 1367 for trunk/src/wsock32/notify.cpp
- Timestamp:
- Oct 20, 1999, 3:18:31 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wsock32/notify.cpp
r518 r1367 1 /* $Id: notify.cpp,v 1. 3 1999-08-16 20:18:39phaller Exp $ */1 /* $Id: notify.cpp,v 1.4 1999-10-20 01:18:30 phaller Exp $ */ 2 2 3 3 /* … … 31 31 typedef unsigned long TID; 32 32 33 typedef struct AsyncStatus { 34 HWND hwnd; // owner's hwindow 35 u_int msg; // message to send when event occurs 36 ULONG event; // event that may occur 37 SOCKET socket; // the socket 38 int status; // blocking yes/no 39 TID threadID; // Thread ID for async 40 int MsgStat; // has message been sent yet? 33 typedef struct AsyncStatus 34 { 35 HWND hwnd; // owner's hwindow 36 u_int msg; // message to send when event occurs 37 ULONG event; // event that may occur 38 SOCKET socket; // the socket 39 int status; // blocking yes/no 40 TID threadID; // Thread ID for async 41 int MsgStat; // has message been sent yet? 41 42 struct AsyncStatus *Next; // pointer to next AsyncStatus in the list 42 43 struct AsyncStatus *Prev; // pointer to previous AsyncStatus in the list
Note:
See TracChangeset
for help on using the changeset viewer.