Changeset 10240 for trunk/src/user32/message.cpp
- Timestamp:
- Aug 22, 2003, 3:16:45 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/message.cpp
r8953 r10240 1 /* $Id: message.cpp,v 1. 5 2002-08-01 16:04:19sandervl Exp $ */1 /* $Id: message.cpp,v 1.6 2003-08-22 13:16:44 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window message APIs for OS/2 … … 210 210 //otherwise use WinSendMsg to send it to the right process/thread 211 211 dprintf(("SendMessages (inter-process/thread) %x %x %x %x", Win32ToOS2Handle(hwnd), msg, wparam, lparam)); 212 result = OSLibSendMessage( Win32ToOS2Handle(hwnd), msg, wparam, lparam, TRUE);212 result = OSLibSendMessage(hwnd, Win32ToOS2Handle(hwnd), msg, wparam, lparam, TRUE); 213 213 ret = 1; 214 214 } … … 255 255 //otherwise use WinSendMsg to send it to the right process/thread 256 256 dprintf(("SendMessages (inter-process/thread) %x %x %x %x", Win32ToOS2Handle(hwnd), msg, wparam, lparam)); 257 result = OSLibSendMessage( Win32ToOS2Handle(hwnd), msg, wparam, lparam, FALSE);257 result = OSLibSendMessage(hwnd, Win32ToOS2Handle(hwnd), msg, wparam, lparam, FALSE); 258 258 ret = 1; 259 259 }
Note:
See TracChangeset
for help on using the changeset viewer.