- Timestamp:
- Nov 21, 1999, 3:04:11 PM (26 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/button.cpp
r1762 r1794 1 /* $Id: button.cpp,v 1.1 8 1999-11-17 17:04:51 cbratschiExp $ */1 /* $Id: button.cpp,v 1.19 1999-11-21 14:04:10 achimha Exp $ */ 2 2 /* File: button.cpp -- Button type widgets 3 3 * … … 18 18 #include <misc.h> 19 19 #include "initterm.h" 20 21 #ifdef DEBUG 22 char *GetMsgText(int Msg); 23 #endif 20 24 21 25 //Prototypes … … 536 540 LRESULT WINAPI ButtonWndProc(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM lParam) 537 541 { 542 // dprintf(("ButtonWndProc hwnd: %04x, msg %s, wp %08x lp %08lx\n", 543 // hwnd, GetMsgText(uMsg), wParam, lParam)); 544 538 545 switch (uMsg) 539 546 { -
trunk/src/user32/combo.cpp
r1784 r1794 1 /* $Id: combo.cpp,v 1.1 6 1999-11-19 21:22:01 cbratschiExp $ */1 /* $Id: combo.cpp,v 1.17 1999-11-21 14:04:10 achimha Exp $ */ 2 2 /* 3 3 * Combo controls … … 22 22 #include "combo.h" 23 23 #include "initterm.h" 24 25 #ifdef DEBUG 26 char *GetMsgText(int Msg); 27 #endif 24 28 25 29 /* bits in the dwKeyData */ … … 2129 2133 WPARAM wParam, LPARAM lParam ) 2130 2134 { 2131 //TRACE("[%04x]: msg %swp %08x lp %08lx\n",2132 // pWnd->hwndSelf, SPY_GetMsgName(message), wParam, lParam);2135 // dprintf(("ComboWndProc hwnd: %04x, msg %s, wp %08x lp %08lx\n", 2136 // hwnd, GetMsgText(message), wParam, lParam)); 2133 2137 2134 2138 switch(message) -
trunk/src/user32/edit.cpp
r1762 r1794 1 /* $Id: edit.cpp,v 1.1 5 1999-11-17 17:04:52 cbratschiExp $ */1 /* $Id: edit.cpp,v 1.16 1999-11-21 14:04:11 achimha Exp $ */ 2 2 /* 3 3 * Edit control … … 28 28 #include "controls.h" 29 29 #include "combo.h" 30 31 #ifdef DEBUG 32 char *GetMsgText(int Msg); 33 #endif 30 34 31 35 #define BUFLIMIT_MULTI 65534 /* maximum buffer size (not including '\0') … … 297 301 EDITSTATE *es = (EDITSTATE*)GetInfoPtr(hwnd); 298 302 LRESULT result = 0; 303 304 // dprintf(("EditWndProc hwnd: %04x, msg %s, wp %08x lp %08lx\n", 305 // hwnd, GetMsgText(msg), wParam, lParam)); 299 306 300 307 switch (msg) {
Note:
See TracChangeset
for help on using the changeset viewer.