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
f92a0c35
Commit
f92a0c35
authored
May 12, 2020
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 12, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Forward SHQueryInfoKey() to shcore.dll.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
832fec3e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
33 deletions
+2
-33
reg.c
dlls/shlwapi/reg.c
+0
-31
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+2
-2
No files found.
dlls/shlwapi/reg.c
View file @
f92a0c35
...
...
@@ -121,37 +121,6 @@ DWORD WINAPI SHSetValueW(HKEY hKey, LPCWSTR lpszSubKey, LPCWSTR lpszValue,
}
/*************************************************************************
* SHQueryInfoKeyA [SHLWAPI.@]
*
* Get information about a registry key. See RegQueryInfoKeyA().
*
* RETURNS
* The result of calling RegQueryInfoKeyA().
*/
LONG
WINAPI
SHQueryInfoKeyA
(
HKEY
hKey
,
LPDWORD
pwSubKeys
,
LPDWORD
pwSubKeyMax
,
LPDWORD
pwValues
,
LPDWORD
pwValueMax
)
{
TRACE
(
"(hkey=%p,%p,%p,%p,%p)
\n
"
,
hKey
,
pwSubKeys
,
pwSubKeyMax
,
pwValues
,
pwValueMax
);
return
RegQueryInfoKeyA
(
hKey
,
NULL
,
NULL
,
NULL
,
pwSubKeys
,
pwSubKeyMax
,
NULL
,
pwValues
,
pwValueMax
,
NULL
,
NULL
,
NULL
);
}
/*************************************************************************
* SHQueryInfoKeyW [SHLWAPI.@]
*
* See SHQueryInfoKeyA.
*/
LONG
WINAPI
SHQueryInfoKeyW
(
HKEY
hKey
,
LPDWORD
pwSubKeys
,
LPDWORD
pwSubKeyMax
,
LPDWORD
pwValues
,
LPDWORD
pwValueMax
)
{
TRACE
(
"(hkey=%p,%p,%p,%p,%p)
\n
"
,
hKey
,
pwSubKeys
,
pwSubKeyMax
,
pwValues
,
pwValueMax
);
return
RegQueryInfoKeyW
(
hKey
,
NULL
,
NULL
,
NULL
,
pwSubKeys
,
pwSubKeyMax
,
NULL
,
pwValues
,
pwValueMax
,
NULL
,
NULL
,
NULL
);
}
/*************************************************************************
* SHQueryValueExA [SHLWAPI.@]
*
* Get a value from the registry, expanding environment variable strings.
...
...
dlls/shlwapi/shlwapi.spec
View file @
f92a0c35
...
...
@@ -709,8 +709,8 @@
@ stdcall SHOpenRegStream2W(long wstr wstr long) shcore.SHOpenRegStream2W
@ stdcall SHOpenRegStreamA(long str str long) shcore.SHOpenRegStreamA
@ stdcall SHOpenRegStreamW(long wstr wstr long) shcore.SHOpenRegStreamW
@ stdcall SHQueryInfoKeyA(long ptr ptr ptr ptr)
@ stdcall SHQueryInfoKeyW(long ptr ptr ptr ptr)
@ stdcall
-import
SHQueryInfoKeyA(long ptr ptr ptr ptr)
@ stdcall
-import
SHQueryInfoKeyW(long ptr ptr ptr ptr)
@ stdcall SHQueryValueExA(long str ptr ptr ptr ptr)
@ stdcall SHQueryValueExW(long wstr ptr ptr ptr ptr)
@ stdcall SHRegCloseUSKey(ptr)
...
...
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