Changeset 6204 for trunk/src/wsock32/asyncapi.cpp
- Timestamp:
- Jul 7, 2001, 7:56:41 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wsock32/asyncapi.cpp
r6203 r6204 1 /* $Id: asyncapi.cpp,v 1.1 2 2001-07-07 17:53:15achimha Exp $ */1 /* $Id: asyncapi.cpp,v 1.13 2001-07-07 17:56:41 achimha Exp $ */ 2 2 3 3 /* … … 407 407 if (pThreadParm->u.asyncselect.mode == WSA_SELECT_HWND) 408 408 { 409 dprintf(("AsyncSelectNotifyEvent: notifying window %x %x %x%x", pThreadParm->u.asyncselect.s, pThreadParm->notifyHandle, pThreadParm->notifyData, event));409 dprintf(("AsyncSelectNotifyEvent: notifying window, socket: 0x%x, window handle: 0x%x, window message: 0x%x, event: 0x%x", pThreadParm->u.asyncselect.s, pThreadParm->notifyHandle, pThreadParm->notifyData, event)); 410 410 PostMessageA((HWND)pThreadParm->notifyHandle, (DWORD)pThreadParm->notifyData, (WPARAM)pThreadParm->u.asyncselect.s, 411 411 (LPARAM)event); … … 414 414 if (pThreadParm->u.asyncselect.mode == WSA_SELECT_HEVENT) 415 415 { 416 dprintf(("AsyncSelectNotifyEvent: notifying event semaphore %x %x %x %x", pThreadParm->u.asyncselect.s, pThreadParm->notifyHandle, pThreadParm->notifyData, event));416 dprintf(("AsyncSelectNotifyEvent: notifying event semaphore, socket: 0x%x, HEVENT: 0x%x, event: 0x%x", pThreadParm->u.asyncselect.s, pThreadParm->notifyHandle, event)); 417 417 SetEvent(pThreadParm->notifyHandle); 418 418 }
Note:
See TracChangeset
for help on using the changeset viewer.