mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
explorer: Load graphics driver before calling CreateDesktopW.
This commit is contained in:
parent
8b5bdb10d5
commit
f9c1b6af12
1 changed files with 4 additions and 4 deletions
|
@ -1083,6 +1083,10 @@ void manage_desktop( WCHAR *arg )
|
||||||
if (name)
|
if (name)
|
||||||
enable_shell = get_default_enable_shell( name );
|
enable_shell = get_default_enable_shell( name );
|
||||||
|
|
||||||
|
UuidCreate( &guid );
|
||||||
|
TRACE( "display guid %s\n", debugstr_guid(&guid) );
|
||||||
|
graphics_driver = load_graphics_driver( driver, &guid );
|
||||||
|
|
||||||
if (name && width && height)
|
if (name && width && height)
|
||||||
{
|
{
|
||||||
if (!(desktop = CreateDesktopW( name, NULL, NULL, 0, DESKTOP_ALL_ACCESS, NULL )))
|
if (!(desktop = CreateDesktopW( name, NULL, NULL, 0, DESKTOP_ALL_ACCESS, NULL )))
|
||||||
|
@ -1093,10 +1097,6 @@ void manage_desktop( WCHAR *arg )
|
||||||
SetThreadDesktop( desktop );
|
SetThreadDesktop( desktop );
|
||||||
}
|
}
|
||||||
|
|
||||||
UuidCreate( &guid );
|
|
||||||
TRACE( "display guid %s\n", debugstr_guid(&guid) );
|
|
||||||
graphics_driver = load_graphics_driver( driver, &guid );
|
|
||||||
|
|
||||||
/* create the desktop window */
|
/* create the desktop window */
|
||||||
hwnd = CreateWindowExW( 0, DESKTOP_CLASS_ATOM, NULL,
|
hwnd = CreateWindowExW( 0, DESKTOP_CLASS_ATOM, NULL,
|
||||||
WS_POPUP | WS_CLIPSIBLINGS | WS_CLIPCHILDREN, 0, 0, 0, 0, 0, 0, 0, &guid );
|
WS_POPUP | WS_CLIPSIBLINGS | WS_CLIPCHILDREN, 0, 0, 0, 0, 0, 0, 0, &guid );
|
||||||
|
|
Loading…
Reference in a new issue