Changeset 1408 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Oct 23, 1999, 12:21:45 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r1405 r1408 1 /* $Id: win32wbase.cpp,v 1. 59 1999-10-22 18:11:48sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.60 1999-10-23 10:21:44 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 25 25 #include <win32wbase.h> 26 26 #include <winres.h> 27 #include <spy.h>28 27 #include "wndmsg.h" 29 28 #include "hooks.h" … … 1618 1617 } 1619 1618 1620 if(Msg != WM_GETDLGCODE && Msg != WM_ENTERIDLE) {//sent *very* often 1621 if(PostSpyMessage(getWindowHandle(), Msg, wParam, lParam) == FALSE) 1622 dprintf(("SendMessageA %s for %x %x %x", GetMsgText(Msg), getWindowHandle(), wParam, lParam)); 1623 } 1619 DebugPrintMessage(getWindowHandle(), Msg, wParam, lParam, FALSE, FALSE); 1624 1620 1625 1621 if(HkCBT::OS2HkCBTProc(getWindowHandle(), Msg, wParam, lParam) == TRUE) {//hook swallowed msg … … 1679 1675 } 1680 1676 1681 if(Msg != WM_GETDLGCODE && Msg != WM_ENTERIDLE) {//sent *very* often 1682 if(PostSpyMessage(getWindowHandle(), Msg, wParam, lParam) == FALSE) 1683 dprintf(("SendMessageW %s for %x %x %x", GetMsgText(Msg), getWindowHandle(), wParam, lParam)); 1684 } 1677 DebugPrintMessage(getWindowHandle(), Msg, wParam, lParam, TRUE, FALSE); 1685 1678 1686 1679 if(HkCBT::OS2HkCBTProc(getWindowHandle(), Msg, wParam, lParam) == TRUE) {//hook swallowed msg … … 1733 1726 BOOL fInternalMsgBackup = fInternalMsg; 1734 1727 1735 if(PostSpyMessage(getWindowHandle(), Msg, wParam, lParam) == FALSE) 1736 dprintf(("SendInternalMessageA %s for %x %x %x", GetMsgText(Msg), getWindowHandle(), wParam, lParam)); 1728 DebugPrintMessage(getWindowHandle(), Msg, wParam, lParam, FALSE, TRUE); 1737 1729 1738 1730 if(HkCBT::OS2HkCBTProc(getWindowHandle(), Msg, wParam, lParam) == TRUE) {//hook swallowed msg … … 1780 1772 BOOL fInternalMsgBackup = fInternalMsg; 1781 1773 1782 if(PostSpyMessage(getWindowHandle(), Msg, wParam, lParam) == FALSE) 1783 dprintf(("SendInternalMessageW %s for %x %x %x", GetMsgText(Msg), getWindowHandle(), wParam, lParam)); 1774 DebugPrintMessage(getWindowHandle(), Msg, wParam, lParam, TRUE, TRUE); 1784 1775 1785 1776 if(HkCBT::OS2HkCBTProc(getWindowHandle(), Msg, wParam, lParam) == TRUE) {//hook swallowed msg
Note:
See TracChangeset
for help on using the changeset viewer.