Changeset 8608
- Timestamp:
- Jun 9, 2002, 12:47:50 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/user32/message.cpp ¶
r7808 r8608 1 /* $Id: message.cpp,v 1. 2 2002-02-06 16:31:48sandervl Exp $ */1 /* $Id: message.cpp,v 1.3 2002-06-09 10:47:50 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window message APIs for OS/2 … … 209 209 { 210 210 //otherwise use WinSendMsg to send it to the right process/thread 211 dprintf(("SendMessages (inter-process) %x %x %x %x", Win32ToOS2Handle(hwnd), msg, wparam, lparam)); 212 ret = OSLibSendMessage(Win32ToOS2Handle(hwnd), msg, wparam, lparam, TRUE); 211 dprintf(("SendMessages (inter-process/thread) %x %x %x %x", Win32ToOS2Handle(hwnd), msg, wparam, lparam)); 212 result = OSLibSendMessage(Win32ToOS2Handle(hwnd), msg, wparam, lparam, TRUE); 213 ret = 1; 213 214 } 214 215 … … 253 254 { 254 255 //otherwise use WinSendMsg to send it to the right process/thread 255 dprintf(("SendMessages (inter-process) %x %x %x %x", Win32ToOS2Handle(hwnd), msg, wparam, lparam)); 256 ret = OSLibSendMessage(Win32ToOS2Handle(hwnd), msg, wparam, lparam, FALSE); 256 dprintf(("SendMessages (inter-process/thread) %x %x %x %x", Win32ToOS2Handle(hwnd), msg, wparam, lparam)); 257 result = OSLibSendMessage(Win32ToOS2Handle(hwnd), msg, wparam, lparam, FALSE); 258 ret = 1; 257 259 } 258 260 if (ret && res_ptr) *res_ptr = result; … … 476 478 477 479 //otherwise use PostMessage to send it to the right process/thread 478 dprintf(("SendMessageCallbackA (inter-process ) %x %x %x %x", hwnd, uMsg, wParam, lParam));480 dprintf(("SendMessageCallbackA (inter-process/thread) %x %x %x %x", hwnd, uMsg, wParam, lParam)); 479 481 PostMessageA(hwnd, uMsg, wParam, lParam); 480 482 return TRUE; … … 556 558 557 559 //otherwise use PostMessage to send it to the right process/thread 558 dprintf(("SendMessageCallbackW (inter-process ) %x %x %x %x", hwnd, uMsg, wParam, lParam));560 dprintf(("SendMessageCallbackW (inter-process/thread) %x %x %x %x", hwnd, uMsg, wParam, lParam)); 559 561 PostMessageW(hwnd, uMsg, wParam, lParam); 560 562 return TRUE;
Note:
See TracChangeset
for help on using the changeset viewer.