- Timestamp:
- Oct 20, 1999, 3:18:31 AM (26 years ago)
- Location:
- trunk/src/wsock32
- Files:
-
- 1 added
- 3 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 -
trunk/src/wsock32/unknown.cpp
r518 r1367 1 /* $Id: unknown.cpp,v 1. 2 1999-08-16 20:18:40 phaller Exp $ */1 /* $Id: unknown.cpp,v 1.3 1999-10-20 01:18:30 phaller Exp $ */ 2 2 3 3 /* … … 46 46 int*, lpiArg6) 47 47 { 48 dprintf(("WSOCK32: OS2rexec not implemented correctly.\n"));48 dprintf(("WSOCK32: rexec not implemented correctly.\n")); 49 49 50 50 return rexec(lppArg1, -
trunk/src/wsock32/wsock32.cpp
r518 r1367 1 /* $Id: wsock32.cpp,v 1. 4 1999-08-16 20:18:40phaller Exp $ */1 /* $Id: wsock32.cpp,v 1.5 1999-10-20 01:18:31 phaller Exp $ */ 2 2 3 3 /* … … 489 489 return as; 490 490 491 return 0;491 return NULL; 492 492 } 493 493
Note:
See TracChangeset
for help on using the changeset viewer.