Changeset 840 for trunk/src/user32/new/win32wbase.cpp
- Timestamp:
- Sep 5, 1999, 7:14:03 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wbase.cpp
r836 r840 1 /* $Id: win32wbase.cpp,v 1.1 1 1999-09-05 15:59:36 dengertExp $ */1 /* $Id: win32wbase.cpp,v 1.12 1999-09-05 17:14:03 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 1200 1200 LRESULT Win32BaseWindow::SendMessageA(ULONG Msg, WPARAM wParam, LPARAM lParam) 1201 1201 { 1202 if(PostSpyMessage(getWindowHandle(), Msg, wParam, lParam) == FALSE) 1203 dprintf(("SendMessageA %s for %x %x %x", GetMsgText(Msg), getWindowHandle(), wParam, lParam)); 1202 if(Msg != WM_GETDLGCODE && Msg != WM_ENTERIDLE) {//sent *very* often 1203 if(PostSpyMessage(getWindowHandle(), Msg, wParam, lParam) == FALSE) 1204 dprintf(("SendMessageA %s for %x %x %x", GetMsgText(Msg), getWindowHandle(), wParam, lParam)); 1205 } 1204 1206 1205 1207 if(HkCBT::OS2HkCBTProc(getWindowHandle(), Msg, wParam, lParam) == TRUE) {//hook swallowed msg … … 1239 1241 LRESULT Win32BaseWindow::SendMessageW(ULONG Msg, WPARAM wParam, LPARAM lParam) 1240 1242 { 1241 if(PostSpyMessage(getWindowHandle(), Msg, wParam, lParam) == FALSE) 1242 dprintf(("SendMessageA %s for %x %x %x", GetMsgText(Msg), getWindowHandle(), wParam, lParam)); 1243 if(Msg != WM_GETDLGCODE && Msg != WM_ENTERIDLE) {//sent *very* often 1244 if(PostSpyMessage(getWindowHandle(), Msg, wParam, lParam) == FALSE) 1245 dprintf(("SendMessageW %s for %x %x %x", GetMsgText(Msg), getWindowHandle(), wParam, lParam)); 1246 } 1243 1247 1244 1248 if(HkCBT::OS2HkCBTProc(getWindowHandle(), Msg, wParam, lParam) == TRUE) {//hook swallowed msg
Note:
See TracChangeset
for help on using the changeset viewer.