Added imports of user32/gdi32/kernel32 wherever necessary.
[wine] / dlls / user / user_main.c
1 /*
2  * USER initialization code
3  */
4
5 #include "windef.h"
6 #include "wingdi.h"
7 #include "winuser.h"
8 #include "winreg.h"
9 #include "wine/winbase16.h"
10
11 #include "dce.h"
12 #include "dialog.h"
13 #include "global.h"
14 #include "input.h"
15 #include "keyboard.h"
16 #include "menu.h"
17 #include "message.h"
18 #include "queue.h"
19 #include "spy.h"
20 #include "sysmetrics.h"
21 #include "user.h"
22 #include "win.h"
23 #include "debugtools.h"
24
25
26 /* load the graphics driver */
27 static BOOL load_driver(void)
28 {
29     char buffer[MAX_PATH];
30     HKEY hkey;
31     DWORD type, count;
32
33     if (RegCreateKeyExA( HKEY_LOCAL_MACHINE, "Software\\Wine\\Wine\\Config\\Wine", 0, NULL,
34                          REG_OPTION_VOLATILE, KEY_ALL_ACCESS, NULL, &hkey, NULL ))
35     {
36         MESSAGE("load_driver: Cannot create config registry key\n" );
37         return FALSE;
38     }
39     count = sizeof(buffer);
40     if (RegQueryValueExA( hkey, "GraphicsDriver", 0, &type, buffer, &count ))
41         strcpy( buffer, "x11drv" );  /* default value */
42     RegCloseKey( hkey );
43
44     if (!LoadLibraryA( buffer ))
45     {
46         MESSAGE( "Could not load graphics driver '%s'\n", buffer );
47         return FALSE;
48     }
49     return TRUE;
50 }
51
52
53 /***********************************************************************
54  *           USER initialisation routine
55  */
56 BOOL WINAPI USER_Init(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
57 {
58     HINSTANCE16 instance;
59     int queueSize;
60
61     if ( USER_HeapSel ) return TRUE;
62
63     /* Create USER heap */
64     if ((instance = LoadLibrary16( "USER.EXE" )) < 32) return FALSE;
65     USER_HeapSel = GlobalHandleToSel16( instance );
66
67      /* Global atom table initialisation */
68     if (!ATOM_Init( USER_HeapSel )) return FALSE;
69
70     /* Load the graphics driver */
71     if (!load_driver()) return FALSE;
72
73     /* Initialize window handling (critical section) */
74     WIN_Init();
75
76     /* Initialize system colors and metrics*/
77     SYSMETRICS_Init();
78     SYSCOLOR_Init();
79
80     /* Create the DCEs */
81     DCE_Init();
82
83     /* Initialize window procedures */
84     if (!WINPROC_Init()) return FALSE;
85
86     /* Initialize built-in window classes */
87     if (!WIDGETS_Init()) return FALSE;
88
89     /* Initialize dialog manager */
90     if (!DIALOG_Init()) return FALSE;
91
92     /* Initialize menus */
93     if (!MENU_Init()) return FALSE;
94
95     /* Initialize message spying */
96     if (!SPY_Init()) return FALSE;
97
98     /* Create system message queue */
99     queueSize = GetProfileIntA( "windows", "TypeAhead", 120 );
100     if (!QUEUE_CreateSysMsgQueue( queueSize )) return FALSE;
101
102     /* Set double click time */
103     SetDoubleClickTime( GetProfileIntA("windows","DoubleClickSpeed",452) );
104
105     /* Create message queue of initial thread */
106     InitThreadInput16( 0, 0 );
107
108     /* Create desktop window */
109     if (!WIN_CreateDesktopWindow()) return FALSE;
110
111     /* Initialize keyboard driver */
112     KEYBOARD_Enable( keybd_event, InputKeyStateTable );
113
114     /* Initialize mouse driver */
115     MOUSE_Enable( mouse_event );
116
117     /* Start processing X events */
118     USER_Driver->pUserRepaintDisable( FALSE );
119
120     return TRUE;
121 }