Changeset 1968 for trunk/src/wsock32/new/relaywin.cpp
- Timestamp:
- Dec 4, 1999, 7:54:33 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wsock32/new/relaywin.cpp
r1959 r1968 214 214 // WinDefWindowProc() 215 215 216 pHM = RelayQuery(ulMsg); // find registered message 217 if (pHM != NULL) // message pair found 216 /* find registered message */ 217 pHM = RelayQuery(ulMsg); 218 /* message pair found */ 219 if (pHM != NULL) 218 220 { 219 221 rc = SHORT1FROMMP(mp2); /* asynchronous operation result */ 222 223 dprintf(("WSOCK32: RelayWindowProc, message %d for window %d with " 224 "mp1 = %d and mp2 = %d (rc = %d) received\n", 225 ulMsg, hwnd, mp1, mp2, rc)); 220 226 221 227 /* check request type for special handling */ … … 270 276 if (rc == 0) 271 277 { 278 dprintf(("WSOCK32:RelayWindowProc, hostent buffer: %d\n", pHM->pvUserData1)); 272 279 /* we need to convert the hostent structure here */ 273 280 Whostent *WinHostent = (Whostent*)pHM->pvUserData1; … … 377 384 break; 378 385 } 386 387 default: 388 { 389 dprintf(("WSOCK32:RelayWindowProc, Unknown request type!!!" 390 "window: %d, msg: %d, mp1 %d, mp2%d\n", pHM->hwnd, 391 pHM->ulMsg, mp1, mp2)); 392 break; 393 } 379 394 } 380 395 … … 394 409 // @@@PH 395 410 if (pHM->ulRequestType != ASYNCREQUEST_SELECT) 411 { 412 dprintf(("WSOCK32:RelayWindowProc, Free handle %d\n", pHM->ulMsg)); 396 413 RelayFree(pHM->ulMsg); 414 } 397 415 398 416 return FALSE; // OK, message sent 417 } else 418 { 419 dprintf(("WSOCK32:AsyncRelayWindowProc: Handle not found, message ignored\n")); 399 420 } 400 421
Note:
See TracChangeset
for help on using the changeset viewer.