Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
992d60e1
Commit
992d60e1
authored
Mar 03, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Mar 03, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
explorer: Use GUID_NULL display device GUID for nulldrv.
parent
8531f23a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
desktop.c
programs/explorer/desktop.c
+2
-1
No files found.
programs/explorer/desktop.c
View file @
992d60e1
...
...
@@ -876,7 +876,7 @@ static BOOL get_default_enable_shell( const WCHAR *name )
return
result
;
}
static
HMODULE
load_graphics_driver
(
const
WCHAR
*
driver
,
const
GUID
*
guid
)
static
HMODULE
load_graphics_driver
(
const
WCHAR
*
driver
,
GUID
*
guid
)
{
static
const
WCHAR
device_keyW
[]
=
{
'S'
,
'y'
,
's'
,
't'
,
'e'
,
'm'
,
'\\'
,
...
...
@@ -921,6 +921,7 @@ static HMODULE load_graphics_driver( const WCHAR *driver, const GUID *guid )
if
(
!
wcscmp
(
name
,
L"null"
))
{
memset
(
guid
,
0
,
sizeof
(
*
guid
)
);
TRACE
(
"display %s using null driver
\n
"
,
debugstr_guid
(
guid
)
);
wcscpy
(
libname
,
L"null"
);
null_driver
=
TRUE
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment