Changeset 821 for trunk/src/user32/new/controls.cpp
- Timestamp:
- Sep 4, 1999, 9:42:30 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/controls.cpp
r760 r821 1 /* $Id: controls.cpp,v 1.1 0 1999-08-31 17:14:51sandervl Exp $ */1 /* $Id: controls.cpp,v 1.11 1999-09-04 19:42:27 sandervl Exp $ */ 2 2 /* File: controls.cpp -- Win32 common controls 3 3 * … … 16 16 #include "combo.H" //listbox,combo,edit 17 17 #include "win32wmdiclient.h" 18 #include "win32dlg.h" 18 19 19 20 /* registration */ … … 66 67 dprintf(("Register MDICLIENT class")); 67 68 if (!MDICLIENT_Register()) dprintf(("failed!!!")); 69 70 dprintf(("Register DIALOG class")); 71 if (!DIALOG_Register()) dprintf(("failed!!!")); 68 72 } 69 73 … … 93 97 dprintf(("Unregister MDICLIENT class")); 94 98 if (!MDICLIENT_Unregister()) dprintf(("failed!!!")); 99 100 dprintf(("Unregister DIALOG class")); 101 if (!DIALOG_Unregister()) dprintf(("failed!!!")); 95 102 } 96 103
Note:
See TracChangeset
for help on using the changeset viewer.