Changeset 7808 for trunk/src/user32/message.cpp
- Timestamp:
- Feb 6, 2002, 5:31:49 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/message.cpp
r7801 r7808 1 /* $Id: message.cpp,v 1. 1 2002-02-05 17:58:59sandervl Exp $ */1 /* $Id: message.cpp,v 1.2 2002-02-06 16:31:48 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window message APIs for OS/2 … … 29 29 #include "oslibmsg.h" 30 30 #include "hook.h" 31 #include "wndmsg.h" 31 32 32 33 #define DBG_LOCALLOG DBG_message … … 263 264 { 264 265 LRESULT res = 0; 266 DebugPrintMessage(hwnd, msg, wParam, lParam, FALSE, FALSE); 265 267 SendMessageTimeoutA(hwnd, msg, wParam, lParam, SMTO_NORMAL, INFINITE, (LPDWORD)&res); 266 268 return res; … … 271 273 { 272 274 LRESULT res = 0; 275 DebugPrintMessage(hwnd, msg, wParam, lParam, TRUE, FALSE); 273 276 SendMessageTimeoutW(hwnd, msg, wParam, lParam, SMTO_NORMAL, INFINITE, (LPDWORD)&res); 274 277 return res; … … 314 317 hwndOS2 = window->getOS2WindowHandle(); 315 318 RELEASE_WNDOBJ(window); 316 dprintf(("PostMessageA, %x %x %x %x", hwnd, msg, wParam, lParam));319 DebugPrintMessage(hwnd, msg, wParam, lParam, FALSE, TRUE); 317 320 return OSLibPostMessage(hwndOS2, msg, wParam, lParam, FALSE); 318 321 } … … 349 352 hwndOS2 = window->getOS2WindowHandle(); 350 353 RELEASE_WNDOBJ(window); 351 dprintf(("PostMessageW, %x %x %x %x", hwnd, msg, wParam, lParam));354 DebugPrintMessage(hwnd, msg, wParam, lParam, TRUE, TRUE); 352 355 return OSLibPostMessage(hwndOS2, msg, wParam, lParam, TRUE); 353 356 }
Note:
See TracChangeset
for help on using the changeset viewer.