Changeset 5429 for trunk/src/user32/windowclass.cpp
- Timestamp:
- Apr 2, 2001, 12:13:28 AM (24 years ago)
- File:
-
- 1 edited
-
trunk/src/user32/windowclass.cpp (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/windowclass.cpp
r5428 r5429 1 /* $Id: windowclass.cpp,v 1.1 8 2001-04-01 19:38:51sandervl Exp $ */1 /* $Id: windowclass.cpp,v 1.19 2001-04-01 22:13:28 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Class Code for OS/2 … … 46 46 Win32WndClass *wclass; 47 47 48 dprintf(("RegisterClassA\n"));49 48 //CB: size new in ex structure 50 49 wc.cbSize = sizeof(wc); … … 62 61 63 62 //TODO: not destroyed when class is unregistered (neither does Wine, but that might be a bug) 63 dprintf(("RegisterClassA")); 64 64 int iSmIconWidth = GetSystemMetrics(SM_CXSMICON); 65 65 int iSmIconHeight = GetSystemMetrics(SM_CYSMICON); … … 92 92 } 93 93 94 dprintf(("RegisterClassExA \n"));94 dprintf(("RegisterClassExA")); 95 95 wclass = new Win32WndClass((WNDCLASSEXA *)lpWndClass,FALSE); 96 96 if(wclass == NULL) { … … 130 130 LR_COPYFROMRESOURCE); 131 131 132 dprintf(("RegisterClassW")); 132 133 winclass = new Win32WndClass((WNDCLASSEXA *)&wc, TRUE); 133 134 if(winclass == NULL) { … … 149 150 Win32WndClass *winclass; 150 151 151 dprintf(("RegisterClassExW\n"));152 152 memcpy(&wc, lpwc, sizeof(WNDCLASSEXA)); 153 153 … … 161 161 } 162 162 163 dprintf(("RegisterClassExW")); 163 164 winclass = new Win32WndClass((WNDCLASSEXA *)&wc, TRUE); 164 165 if(winclass == NULL) {
Note:
See TracChangeset
for help on using the changeset viewer.
