Changeset 6420 for trunk/src/user32/windowmsg.cpp
- Timestamp:
- Jul 30, 2001, 10:48:52 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/windowmsg.cpp
r6012 r6420 1 /* $Id: windowmsg.cpp,v 1.2 7 2001-06-14 14:49:19sandervl Exp $ */1 /* $Id: windowmsg.cpp,v 1.28 2001-07-30 20:48:52 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window message APIs for OS/2 … … 62 62 BOOL ret; 63 63 64 dprintf2(("GetMessageA %x % d-%d %d", hwnd, uMsgFilterMin, uMsgFilterMax));64 dprintf2(("GetMessageA %x %x-%x", hwnd, uMsgFilterMin, uMsgFilterMax)); 65 65 ret = OSLibWinGetMsg(pMsg, hwnd, uMsgFilterMin, uMsgFilterMax); 66 if(ret) dprintf2(("GetMessageA %x %x %x %x", hwnd, pMsg->message, pMsg->wParam, pMsg->lParam)); 66 67 HOOK_CallHooksA(WH_GETMESSAGE, HC_ACTION, PM_REMOVE, (LPARAM)pMsg); 67 68 return ret; … … 73 74 BOOL ret; 74 75 75 dprintf2(("GetMessageW %x % d-%d %d", hwnd, uMsgFilterMin, uMsgFilterMax));76 dprintf2(("GetMessageW %x %x-%x", hwnd, uMsgFilterMin, uMsgFilterMax)); 76 77 ret = OSLibWinGetMsg(pMsg, hwnd, uMsgFilterMin, uMsgFilterMax, TRUE); 77 78 HOOK_CallHooksW(WH_GETMESSAGE, HC_ACTION, PM_REMOVE, (LPARAM)pMsg);
Note:
See TracChangeset
for help on using the changeset viewer.