Changeset 384 for trunk/src/user32/new/controls.cpp
- Timestamp:
- Jul 24, 1999, 2:40:20 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/controls.cpp
r373 r384 1 /* $Id: controls.cpp,v 1. 6 1999-07-23 16:46:29cbratschi Exp $ */1 /* $Id: controls.cpp,v 1.7 1999-07-24 12:40:20 cbratschi Exp $ */ 2 2 /* File: controls.cpp -- Win32 common controls 3 3 * … … 14 14 #include "static.h" 15 15 #include "scroll.h" 16 #include "combo.H" //listbox included 16 17 17 18 /* registration */ … … 27 28 dprintf(("Register SCROLLBAR class")); 28 29 if (!SCROLLBAR_Register()) dprintf(("failed!!!")); 30 31 dprintf(("Register LISTBOX class")); 32 if (!LISTBOX_Register()) dprintf(("failed!!!")); 33 34 dprintf(("Register COMBOLBOX class")); 35 if (!COMBOLBOX_Register()) dprintf(("failed!!!")); 36 37 dprintf(("Register COMBOBOX class")); 38 if (!COMBOBOX_Register()) dprintf(("failed!!!")); 29 39 } 30 40 … … 39 49 dprintf(("Unregister SCROLLBAR class")); 40 50 if (!SCROLLBAR_Unregister()) dprintf(("failed!!!")); 51 52 dprintf(("Unregister LISTBOX class")); 53 if (!LISTBOX_Unregister()) dprintf(("failed!!!")); 54 55 dprintf(("Unregister COMBOLBOX class")); 56 if (!COMBOLBOX_Unregister()) dprintf(("failed!!!")); 57 58 dprintf(("Unregister COMBOBOX class")); 59 if (!COMBOBOX_Unregister()) dprintf(("failed!!!")); 41 60 } 42 61
Note:
See TracChangeset
for help on using the changeset viewer.