Changeset 220
- Timestamp:
- Jun 26, 1999, 5:07:01 PM (26 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/changelog ¶
r194 r220 1 /* $Id: changelog,v 1.23 1999-06-25 18:13:22 achimha Exp $ */ 1 /* $Id: changelog,v 1.24 1999-06-26 15:06:35 sandervl Exp $ */ 2 99-06-26: Sander van Leeuwen 3 - USER32: Changes for message spy & several message handler changes 4 2 5 99-06-25: Achim Hasenmueller 3 6 - Finally fixed changelog date format to be compliant with -
TabularUnified trunk/src/user32/user32.cpp ¶
r215 r220 1 /* $Id: user32.cpp,v 1.1 5 1999-06-26 13:21:12sandervl Exp $ */1 /* $Id: user32.cpp,v 1.16 1999-06-26 15:07:00 sandervl Exp $ */ 2 2 3 3 /* … … 292 292 HWND WIN32API GetFocus(void) 293 293 { 294 dprintf(("USER32: GetFocus\n"));294 // dprintf(("USER32: GetFocus\n")); 295 295 return O32_GetFocus(); 296 296 } -
TabularUnified trunk/src/user32/wndclass.cpp ¶
r218 r220 1 /* $Id: wndclass.cpp,v 1.1 1 1999-06-26 14:09:58sandervl Exp $ */1 /* $Id: wndclass.cpp,v 1.12 1999-06-26 15:07:01 sandervl Exp $ */ 2 2 3 3 /* … … 92 92 } 93 93 return rc; 94 94 95 case WM_CREATE: 95 case WM_DESTROY:96 96 case WM_MBUTTONDOWN: 97 97 case WM_RBUTTONDOWN: 98 rc = ButtonHandler(hwnd, Msg, wParam, lParam); 99 NotifyParent(hwnd, Msg, wParam, lParam); 100 return rc; 101 102 case WM_DESTROY: 98 103 NotifyParent(hwnd, Msg, wParam, lParam); 99 104 break;
Note:
See TracChangeset
for help on using the changeset viewer.