Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
6aace301
Commit
6aace301
authored
Dec 17, 2013
by
Stefan Leichter
Committed by
Alexandre Julliard
Dec 18, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Support signature $Windows NT$ in SetupDiGetINFClassA/W too.
parent
1928d611
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
devinst.c
dlls/setupapi/devinst.c
+2
-1
No files found.
dlls/setupapi/devinst.c
View file @
6aace301
...
...
@@ -58,6 +58,7 @@ static const WCHAR NtPlatformExtension[] = {'.','N','T','x','8','6',0};
static
const
WCHAR
Signature
[]
=
{
'S'
,
'i'
,
'g'
,
'n'
,
'a'
,
't'
,
'u'
,
'r'
,
'e'
,
0
};
static
const
WCHAR
Version
[]
=
{
'V'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
WinExtension
[]
=
{
'.'
,
'W'
,
'i'
,
'n'
,
0
};
static
const
WCHAR
WindowsNT
[]
=
{
'$'
,
'W'
,
'i'
,
'n'
,
'd'
,
'o'
,
'w'
,
's'
,
' '
,
'N'
,
'T'
,
'$'
,
0
};
/* Registry key and value names */
static
const
WCHAR
ControlClass
[]
=
{
'S'
,
'y'
,
's'
,
't'
,
'e'
,
'm'
,
'\\'
,
...
...
@@ -4073,7 +4074,7 @@ BOOL WINAPI SetupDiGetINFClassW(PCWSTR inf, LPGUID class_guid, PWSTR class_name,
if
(
!
GetPrivateProfileStringW
(
Version
,
Signature
,
NULL
,
buffer
,
MAX_PATH
,
inf
))
return
FALSE
;
if
(
lstrcmpiW
(
buffer
,
Chicago
))
if
(
lstrcmpiW
(
buffer
,
Chicago
)
&&
lstrcmpiW
(
buffer
,
WindowsNT
)
)
return
FALSE
;
buffer
[
0
]
=
'\0'
;
...
...
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