- Timestamp:
- Jun 25, 1999, 11:35:27 PM (26 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/Makefile
r171 r196 1 # $Id: Makefile,v 1. 7 1999-06-23 22:39:01 phallerExp $1 # $Id: Makefile,v 1.8 1999-06-25 21:35:27 sandervl Exp $ 2 2 3 3 # … … 25 25 dlgconvert.obj icon.obj hook.obj hooks.obj menu.obj \ 26 26 usrcall.obj defwndproc.obj syscolor.obj char.obj initterm.obj \ 27 uitools.obj unknown.obj 27 uitools.obj unknown.obj spy.obj 28 28 29 29 … … 68 68 wndclass.obj: wndclass.cpp \ 69 69 $(PDWIN32_INCLUDE)\wndproc.h $(PDWIN32_INCLUDE)\wndclass.h 70 initterm.obj: initterm.cpp 70 initterm.obj: initterm.cpp $(PDWIN32_INCLUDE)\spy.h 71 71 uitools.obj: uitools.cpp 72 72 unknown.obj: unknown.cpp 73 74 spy.obj: spy.cpp $(PDWIN32_INCLUDE)\spy.h 73 75 74 76 -
trunk/src/user32/wndclass.cpp
r138 r196 1 /* $Id: wndclass.cpp,v 1. 6 1999-06-21 00:21:26 buerkleExp $ */1 /* $Id: wndclass.cpp,v 1.7 1999-06-25 21:35:27 sandervl Exp $ */ 2 2 3 3 /* … … 22 22 #include "wndclass.h" 23 23 #include "hooks.h" 24 #include <spy.h> 24 25 25 26 //default window handlers that are registered by RegisterClass are called … … 801 802 802 803 #ifdef DEBUG 803 dprintf(("OS2ToWinCallback for message %s", GetMsgText(Msg))); 804 dprintf(("OS2ToWinCallback %s for %x %x %x", GetMsgText(Msg), hwnd, wParam, lParam)); 805 PostSpyMessage(hwnd, Msg, wParam, lParam); 804 806 #endif 805 807 -
trunk/src/user32/wndproc.cpp
r134 r196 1 /* $Id: wndproc.cpp,v 1. 6 1999-06-20 16:47:39sandervl Exp $ */1 /* $Id: wndproc.cpp,v 1.7 1999-06-25 21:35:27 sandervl Exp $ */ 2 2 3 3 /* … … 23 23 #include "dlgconvert.h" 24 24 #include "hooks.h" 25 #include <spy.h> 25 26 26 27 #ifdef DEBUG … … 288 289 if(curwnd != NULL) { 289 290 #ifdef DEBUG 290 WriteLog("***************Message %s for window/dialog %X\n", GetMsgText(Msg), hwnd); 291 WriteLog("Message %s for %X %x %x\n", GetMsgText(Msg), hwnd, wParam, lParam); 292 PostSpyMessage(hwnd, Msg, wParam, lParam); 291 293 #endif 292 294 switch(Msg)
Note:
See TracChangeset
for help on using the changeset viewer.