- Timestamp:
- Jun 26, 1999, 5:07:01 PM (26 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
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 } -
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.