Changeset 7808 for trunk/src/user32/wndmsg.cpp
- Timestamp:
- Feb 6, 2002, 5:31:49 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/wndmsg.cpp
r6970 r7808 1 /* $Id: wndmsg.cpp,v 1.1 6 2001-10-08 23:24:43 phallerExp $ */1 /* $Id: wndmsg.cpp,v 1.17 2002-02-06 16:31:49 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window message text function for OS/2 … … 765 765 } 766 766 767 768 void DebugPrintMessage(HWND hwnd, UINT Msg, WPARAM wParam, LPARAM lParam, BOOL fUnicode, BOOL fInternalMsg) 767 #include <commctrl.h> 768 769 void DebugPrintMessage(HWND hwnd, UINT Msg, WPARAM wParam, LPARAM lParam, BOOL fUnicode, BOOL fPostMessage) 769 770 { 770 771 char unicode; … … 778 779 if(PostSpyMessage(hwnd, Msg, wParam, lParam) == FALSE) 779 780 { 780 if(f InternalMsg) {781 dprintf((" SendInternalMessage%c %s for %x %x %x", unicode, GetMsgText(Msg), hwnd, wParam, lParam));781 if(fPostMessage) { 782 dprintf(("PostMessage%c %s for %x %x %x", unicode, GetMsgText(Msg), hwnd, wParam, lParam)); 782 783 } 783 784 else dprintf(("SendMessage%c %s for %x %x %x", unicode, GetMsgText(Msg), hwnd, wParam, lParam)); … … 785 786 } 786 787 else { 787 if(f InternalMsg) {788 dprintf2((" SendInternalMessage%c %s for %x %x %x", unicode, GetMsgText(Msg), hwnd, wParam, lParam));788 if(fPostMessage) { 789 dprintf2(("PostMessage%c %s for %x %x %x", unicode, GetMsgText(Msg), hwnd, wParam, lParam)); 789 790 } 790 791 else dprintf2(("SendMessage%c %s for %x %x %x", unicode, GetMsgText(Msg), hwnd, wParam, lParam)); 791 792 } 793 //testestest 794 if(Msg == WM_NOTIFY && (hwnd == 0x6800000a || hwnd == 0x6800000c)) { 795 LPNMLISTVIEW pHdr = (LPNMLISTVIEW)lParam; 796 dprintf(("WM_NOTIFY %x %x %x", pHdr->hdr.hwndFrom, pHdr->hdr.idFrom, pHdr->hdr.code)); 797 } 798 //testestest 792 799 } 793 800
Note:
See TracChangeset
for help on using the changeset viewer.