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
060c8f0c
Commit
060c8f0c
authored
Jan 04, 2011
by
Andrew Nguyen
Committed by
Alexandre Julliard
Jan 04, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reg: Accept full names of the standard registry hives.
parent
5db4caee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
5 deletions
+15
-5
reg.c
programs/reg/reg.c
+15
-5
No files found.
programs/reg/reg.c
View file @
060c8f0c
...
...
@@ -66,20 +66,30 @@ static int reg_message(int msg)
static
HKEY
get_rootkey
(
LPWSTR
key
)
{
static
const
WCHAR
szHKLM
[]
=
{
'H'
,
'K'
,
'L'
,
'M'
,
0
};
static
const
WCHAR
szHKEY_LOCAL_MACHINE
[]
=
{
'H'
,
'K'
,
'E'
,
'Y'
,
'_'
,
'L'
,
'O'
,
'C'
,
'A'
,
'L'
,
'_'
,
'M'
,
'A'
,
'C'
,
'H'
,
'I'
,
'N'
,
'E'
,
0
};
static
const
WCHAR
szHKCU
[]
=
{
'H'
,
'K'
,
'C'
,
'U'
,
0
};
static
const
WCHAR
szHKEY_CURRENT_USER
[]
=
{
'H'
,
'K'
,
'E'
,
'Y'
,
'_'
,
'C'
,
'U'
,
'R'
,
'R'
,
'E'
,
'N'
,
'T'
,
'_'
,
'U'
,
'S'
,
'E'
,
'R'
,
0
};
static
const
WCHAR
szHKCR
[]
=
{
'H'
,
'K'
,
'C'
,
'R'
,
0
};
static
const
WCHAR
szHKEY_CLASSES_ROOT
[]
=
{
'H'
,
'K'
,
'E'
,
'Y'
,
'_'
,
'C'
,
'L'
,
'A'
,
'S'
,
'S'
,
'E'
,
'S'
,
'_'
,
'R'
,
'O'
,
'O'
,
'T'
,
0
};
static
const
WCHAR
szHKU
[]
=
{
'H'
,
'K'
,
'U'
,
0
};
static
const
WCHAR
szHKEY_USERS
[]
=
{
'H'
,
'K'
,
'E'
,
'Y'
,
'_'
,
'U'
,
'S'
,
'E'
,
'R'
,
'S'
,
0
};
static
const
WCHAR
szHKCC
[]
=
{
'H'
,
'K'
,
'C'
,
'C'
,
0
};
static
const
WCHAR
szHKEY_CURRENT_CONFIG
[]
=
{
'H'
,
'K'
,
'E'
,
'Y'
,
'_'
,
'C'
,
'U'
,
'R'
,
'R'
,
'E'
,
'N'
,
'T'
,
'_'
,
'C'
,
'O'
,
'N'
,
'F'
,
'I'
,
'G'
,
0
};
if
(
CompareStringW
(
CP_ACP
,
NORM_IGNORECASE
,
key
,
4
,
szHKLM
,
4
)
==
2
)
if
(
CompareStringW
(
CP_ACP
,
NORM_IGNORECASE
,
key
,
4
,
szHKLM
,
4
)
==
2
||
CompareStringW
(
CP_ACP
,
NORM_IGNORECASE
,
key
,
18
,
szHKEY_LOCAL_MACHINE
,
18
)
==
2
)
return
HKEY_LOCAL_MACHINE
;
else
if
(
CompareStringW
(
CP_ACP
,
NORM_IGNORECASE
,
key
,
4
,
szHKCU
,
4
)
==
2
)
else
if
(
CompareStringW
(
CP_ACP
,
NORM_IGNORECASE
,
key
,
4
,
szHKCU
,
4
)
==
2
||
CompareStringW
(
CP_ACP
,
NORM_IGNORECASE
,
key
,
17
,
szHKEY_CURRENT_USER
,
17
)
==
2
)
return
HKEY_CURRENT_USER
;
else
if
(
CompareStringW
(
CP_ACP
,
NORM_IGNORECASE
,
key
,
4
,
szHKCR
,
4
)
==
2
)
else
if
(
CompareStringW
(
CP_ACP
,
NORM_IGNORECASE
,
key
,
4
,
szHKCR
,
4
)
==
2
||
CompareStringW
(
CP_ACP
,
NORM_IGNORECASE
,
key
,
17
,
szHKEY_CLASSES_ROOT
,
17
)
==
2
)
return
HKEY_CLASSES_ROOT
;
else
if
(
CompareStringW
(
CP_ACP
,
NORM_IGNORECASE
,
key
,
3
,
szHKU
,
3
)
==
2
)
else
if
(
CompareStringW
(
CP_ACP
,
NORM_IGNORECASE
,
key
,
3
,
szHKU
,
3
)
==
2
||
CompareStringW
(
CP_ACP
,
NORM_IGNORECASE
,
key
,
10
,
szHKEY_USERS
,
10
)
==
2
)
return
HKEY_USERS
;
else
if
(
CompareStringW
(
CP_ACP
,
NORM_IGNORECASE
,
key
,
4
,
szHKCC
,
4
)
==
2
)
else
if
(
CompareStringW
(
CP_ACP
,
NORM_IGNORECASE
,
key
,
4
,
szHKCC
,
4
)
==
2
||
CompareStringW
(
CP_ACP
,
NORM_IGNORECASE
,
key
,
19
,
szHKEY_CURRENT_CONFIG
,
19
)
==
2
)
return
HKEY_CURRENT_CONFIG
;
else
return
NULL
;
}
...
...
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