2 * USER initialization code
4 * Copyright 2000 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include "user_private.h"
32 #include "wine/unicode.h"
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(graphics
);
37 #define DESKTOP_ALL_ACCESS 0x01ff
39 HMODULE user32_module
= 0;
41 static CRITICAL_SECTION user_section
;
42 static CRITICAL_SECTION_DEBUG critsect_debug
=
45 { &critsect_debug
.ProcessLocksList
, &critsect_debug
.ProcessLocksList
},
46 0, 0, { (DWORD_PTR
)(__FILE__
": user_section") }
48 static CRITICAL_SECTION user_section
= { &critsect_debug
, -1, 0, 0, 0, 0 };
50 static HPALETTE (WINAPI
*pfnGDISelectPalette
)( HDC hdc
, HPALETTE hpal
, WORD bkgnd
);
51 static UINT (WINAPI
*pfnGDIRealizePalette
)( HDC hdc
);
52 static HPALETTE hPrimaryPalette
;
54 static DWORD exiting_thread_id
;
56 extern void WDML_NotifyThreadDetach(void);
59 /***********************************************************************
64 EnterCriticalSection( &user_section
);
68 /***********************************************************************
71 void USER_Unlock(void)
73 LeaveCriticalSection( &user_section
);
77 /***********************************************************************
80 * Make sure that we don't hold the user lock.
82 void USER_CheckNotLock(void)
84 if (user_section
.OwningThread
== ULongToHandle(GetCurrentThreadId()) && user_section
.RecursionCount
)
86 ERR( "BUG: holding USER lock\n" );
92 /***********************************************************************
93 * UserSelectPalette (Not a Windows API)
95 static HPALETTE WINAPI
UserSelectPalette( HDC hDC
, HPALETTE hPal
, BOOL bForceBackground
)
99 if (!bForceBackground
&& (hPal
!= GetStockObject(DEFAULT_PALETTE
)))
101 HWND hwnd
= WindowFromDC( hDC
);
104 HWND hForeground
= GetForegroundWindow();
105 /* set primary palette if it's related to current active */
106 if (hForeground
== hwnd
|| IsChild(hForeground
,hwnd
))
109 hPrimaryPalette
= hPal
;
113 return pfnGDISelectPalette( hDC
, hPal
, wBkgPalette
);
117 /***********************************************************************
118 * UserRealizePalette (USER32.@)
120 UINT WINAPI
UserRealizePalette( HDC hDC
)
122 UINT realized
= pfnGDIRealizePalette( hDC
);
124 /* do not send anything if no colors were changed */
125 if (realized
&& GetCurrentObject( hDC
, OBJ_PAL
) == hPrimaryPalette
)
127 /* send palette change notification */
128 HWND hWnd
= WindowFromDC( hDC
);
129 if (hWnd
) SendMessageTimeoutW( HWND_BROADCAST
, WM_PALETTECHANGED
, (WPARAM
)hWnd
, 0,
130 SMTO_ABORTIFHUNG
, 2000, NULL
);
136 /***********************************************************************
139 * Patch the function pointers in GDI for SelectPalette and RealizePalette
141 static void palette_init(void)
144 HMODULE module
= GetModuleHandleA( "gdi32" );
147 ERR( "cannot get GDI32 handle\n" );
150 if ((ptr
= (void**)GetProcAddress( module
, "pfnSelectPalette" )))
151 pfnGDISelectPalette
= InterlockedExchangePointer( ptr
, UserSelectPalette
);
152 else ERR( "cannot find pfnSelectPalette in GDI32\n" );
153 if ((ptr
= (void**)GetProcAddress( module
, "pfnRealizePalette" )))
154 pfnGDIRealizePalette
= InterlockedExchangePointer( ptr
, UserRealizePalette
);
155 else ERR( "cannot find pfnRealizePalette in GDI32\n" );
159 /***********************************************************************
160 * get_default_desktop
162 * Get the name of the desktop to use for this app if not specified explicitly.
164 static const WCHAR
*get_default_desktop(void)
166 static const WCHAR defaultW
[] = {'D','e','f','a','u','l','t',0};
167 static const WCHAR desktopW
[] = {'D','e','s','k','t','o','p',0};
168 static const WCHAR explorerW
[] = {'\\','E','x','p','l','o','r','e','r',0};
169 static const WCHAR app_defaultsW
[] = {'S','o','f','t','w','a','r','e','\\',
170 'W','i','n','e','\\',
171 'A','p','p','D','e','f','a','u','l','t','s',0};
172 static WCHAR buffer
[MAX_PATH
+ sizeof(explorerW
)/sizeof(WCHAR
)];
173 WCHAR
*p
, *appname
= buffer
;
174 const WCHAR
*ret
= defaultW
;
178 len
= (GetModuleFileNameW( 0, buffer
, MAX_PATH
));
179 if (!len
|| len
>= MAX_PATH
) return ret
;
180 if ((p
= strrchrW( appname
, '/' ))) appname
= p
+ 1;
181 if ((p
= strrchrW( appname
, '\\' ))) appname
= p
+ 1;
182 p
= appname
+ strlenW(appname
);
183 strcpyW( p
, explorerW
);
185 /* @@ Wine registry key: HKCU\Software\Wine\AppDefaults\app.exe\Explorer */
186 if (!RegOpenKeyW( HKEY_CURRENT_USER
, app_defaultsW
, &tmpkey
))
188 if (RegOpenKeyW( tmpkey
, appname
, &appkey
)) appkey
= 0;
189 RegCloseKey( tmpkey
);
192 len
= sizeof(buffer
);
193 if (!RegQueryValueExW( appkey
, desktopW
, 0, NULL
, (LPBYTE
)buffer
, &len
)) ret
= buffer
;
194 RegCloseKey( appkey
);
195 if (ret
&& strcmpiW( ret
, defaultW
)) return ret
;
200 memcpy( buffer
, app_defaultsW
, 13 * sizeof(WCHAR
) ); /* copy only software\\wine */
201 strcpyW( buffer
+ 13, explorerW
);
203 /* @@ Wine registry key: HKCU\Software\Wine\Explorer */
204 if (!RegOpenKeyW( HKEY_CURRENT_USER
, buffer
, &appkey
))
206 len
= sizeof(buffer
);
207 if (!RegQueryValueExW( appkey
, desktopW
, 0, NULL
, (LPBYTE
)buffer
, &len
)) ret
= buffer
;
208 RegCloseKey( appkey
);
214 /***********************************************************************
217 * Connect to the process window station and desktop.
219 static void winstation_init(void)
221 static const WCHAR WinSta0
[] = {'W','i','n','S','t','a','0',0};
224 WCHAR
*winstation
= NULL
, *desktop
= NULL
, *buffer
= NULL
;
227 GetStartupInfoW( &info
);
228 if (info
.lpDesktop
&& *info
.lpDesktop
)
230 buffer
= HeapAlloc( GetProcessHeap(), 0, (strlenW(info
.lpDesktop
) + 1) * sizeof(WCHAR
) );
231 strcpyW( buffer
, info
.lpDesktop
);
232 if ((desktop
= strchrW( buffer
, '\\' )))
237 else desktop
= buffer
;
240 /* set winstation if explicitly specified, or if we don't have one yet */
241 if (buffer
|| !GetProcessWindowStation())
243 handle
= CreateWindowStationW( winstation
? winstation
: WinSta0
, 0, WINSTA_ALL_ACCESS
, NULL
);
246 SetProcessWindowStation( handle
);
247 /* only WinSta0 is visible */
248 if (!winstation
|| !strcmpiW( winstation
, WinSta0
))
250 USEROBJECTFLAGS flags
;
251 flags
.fInherit
= FALSE
;
252 flags
.fReserved
= FALSE
;
253 flags
.dwFlags
= WSF_VISIBLE
;
254 SetUserObjectInformationW( handle
, UOI_FLAGS
, &flags
, sizeof(flags
) );
258 if (buffer
|| !GetThreadDesktop( GetCurrentThreadId() ))
260 handle
= CreateDesktopW( desktop
? desktop
: get_default_desktop(),
261 NULL
, NULL
, 0, DESKTOP_ALL_ACCESS
, NULL
);
262 if (handle
) SetThreadDesktop( handle
);
264 HeapFree( GetProcessHeap(), 0, buffer
);
268 /***********************************************************************
269 * USER initialisation routine
271 static BOOL
process_attach(void)
275 /* Initialize system colors and metrics */
278 /* Setup palette function pointers */
281 /* Initialize built-in window classes */
282 CLASS_RegisterBuiltinClasses();
284 /* Initialize message spying */
285 if (!SPY_Init()) return FALSE
;
291 /**********************************************************************
292 * USER_IsExitingThread
294 BOOL
USER_IsExitingThread( DWORD tid
)
296 return (tid
== exiting_thread_id
);
300 /**********************************************************************
303 static void thread_detach(void)
305 struct user_thread_info
*thread_info
= get_user_thread_info();
307 exiting_thread_id
= GetCurrentThreadId();
309 WDML_NotifyThreadDetach();
311 if (thread_info
->top_window
) WIN_DestroyThreadWindows( thread_info
->top_window
);
312 if (thread_info
->msg_window
) WIN_DestroyThreadWindows( thread_info
->msg_window
);
313 CloseHandle( thread_info
->server_queue
);
314 HeapFree( GetProcessHeap(), 0, thread_info
->wmchar_data
);
315 HeapFree( GetProcessHeap(), 0, thread_info
->key_state
);
317 exiting_thread_id
= 0;
321 /***********************************************************************
322 * UserClientDllInitialize (USER32.@)
324 * USER dll initialisation routine (exported as UserClientDllInitialize for compatibility).
326 BOOL WINAPI
DllMain( HINSTANCE inst
, DWORD reason
, LPVOID reserved
)
331 case DLL_PROCESS_ATTACH
:
332 user32_module
= inst
;
333 ret
= process_attach();
335 case DLL_THREAD_DETACH
:
338 case DLL_PROCESS_DETACH
:
339 USER_unload_driver();
340 DeleteCriticalSection(&user_section
);
347 /***********************************************************************
348 * ExitWindowsEx (USER32.@)
350 BOOL WINAPI
ExitWindowsEx( UINT flags
, DWORD reason
)
352 static const WCHAR winebootW
[] = { '\\','w','i','n','e','b','o','o','t','.','e','x','e',0 };
353 static const WCHAR killW
[] = { ' ','-','-','k','i','l','l',0 };
354 static const WCHAR end_sessionW
[] = { ' ','-','-','e','n','d','-','s','e','s','s','i','o','n',0 };
355 static const WCHAR forceW
[] = { ' ','-','-','f','o','r','c','e',0 };
356 static const WCHAR shutdownW
[] = { ' ','-','-','s','h','u','t','d','o','w','n',0 };
359 WCHAR cmdline
[MAX_PATH
+ 64];
360 PROCESS_INFORMATION pi
;
364 GetSystemDirectoryW( app
, MAX_PATH
- sizeof(winebootW
)/sizeof(WCHAR
) );
365 strcatW( app
, winebootW
);
366 strcpyW( cmdline
, app
);
368 if (flags
& EWX_FORCE
) lstrcatW( cmdline
, killW
);
371 lstrcatW( cmdline
, end_sessionW
);
372 if (flags
& EWX_FORCEIFHUNG
) lstrcatW( cmdline
, forceW
);
374 if (!(flags
& EWX_REBOOT
)) lstrcatW( cmdline
, shutdownW
);
376 memset( &si
, 0, sizeof si
);
378 Wow64DisableWow64FsRedirection( &redir
);
379 if (!CreateProcessW( app
, cmdline
, NULL
, NULL
, FALSE
, DETACHED_PROCESS
, NULL
, NULL
, &si
, &pi
))
381 Wow64RevertWow64FsRedirection( redir
);
382 ERR( "Failed to run %s\n", debugstr_w(cmdline
) );
385 Wow64RevertWow64FsRedirection( redir
);
386 CloseHandle( pi
.hProcess
);
387 CloseHandle( pi
.hThread
);
391 /***********************************************************************
392 * LockWorkStation (USER32.@)
394 BOOL WINAPI
LockWorkStation(void)
397 SetLastError( ERROR_CALL_NOT_IMPLEMENTED
);
401 /***********************************************************************
402 * RegisterServicesProcess (USER32.@)
404 int WINAPI
RegisterServicesProcess(DWORD ServicesProcessId
)
406 FIXME("(0x%x): stub\n", ServicesProcessId
);