source: trunk/src/user32/new/controls.cpp@ 317

Last change on this file since 317 was 317, checked in by cbratschi, 26 years ago

Button from WINE, first user32.cpp work

File size: 243 bytes
Line 
1/* File: controls.cpp -- Win32 common controls
2 *
3 * Copyright (c) 1999 Christoph Bratschi
4 *
5 */
6
7#include "controls.h"
8#include "button.h"
9
10void CONTROLS_Register()
11{
12 BUTTON_Register;
13}
14
15void CONTROLS_Unregister()
16{
17 BUTTON_Unregister;
18}
Note: See TracBrowser for help on using the repository browser.