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
9f349eb9
Commit
9f349eb9
authored
Dec 04, 2018
by
Nikolay Sivov
Committed by
Alexandre Julliard
Dec 04, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Forward SHEnumValue() to shcore.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5f42d67d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
47 deletions
+2
-47
reg.c
dlls/shlwapi/reg.c
+0
-45
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+2
-2
No files found.
dlls/shlwapi/reg.c
View file @
9f349eb9
...
@@ -1667,51 +1667,6 @@ LONG WINAPI SHEnumKeyExW(HKEY hKey, DWORD dwIndex, LPWSTR lpszSubKey,
...
@@ -1667,51 +1667,6 @@ LONG WINAPI SHEnumKeyExW(HKEY hKey, DWORD dwIndex, LPWSTR lpszSubKey,
}
}
/*************************************************************************
/*************************************************************************
* SHEnumValueA [SHLWAPI.@]
*
* Enumerate values in a registry key.
*
* PARAMS
* hKey [I] Handle to registry key
* dwIndex [I] Index of key to enumerate
* lpszValue [O] Pointer updated with the values name
* pwLen [O] Pointer updated with the values length
* pwType [O] Pointer updated with the values type
* pvData [O] Pointer updated with the values data
* pcbData [O] Pointer updated with the values size
*
* RETURNS
* Success: ERROR_SUCCESS. Output parameters are updated.
* Failure: An error code from RegEnumValueA().
*/
LONG
WINAPI
SHEnumValueA
(
HKEY
hKey
,
DWORD
dwIndex
,
LPSTR
lpszValue
,
LPDWORD
pwLen
,
LPDWORD
pwType
,
LPVOID
pvData
,
LPDWORD
pcbData
)
{
TRACE
(
"(hkey=%p,%d,%s,%p,%p,%p,%p)
\n
"
,
hKey
,
dwIndex
,
debugstr_a
(
lpszValue
),
pwLen
,
pwType
,
pvData
,
pcbData
);
return
RegEnumValueA
(
hKey
,
dwIndex
,
lpszValue
,
pwLen
,
NULL
,
pwType
,
pvData
,
pcbData
);
}
/*************************************************************************
* SHEnumValueW [SHLWAPI.@]
*
* See SHEnumValueA.
*/
LONG
WINAPI
SHEnumValueW
(
HKEY
hKey
,
DWORD
dwIndex
,
LPWSTR
lpszValue
,
LPDWORD
pwLen
,
LPDWORD
pwType
,
LPVOID
pvData
,
LPDWORD
pcbData
)
{
TRACE
(
"(hkey=%p,%d,%s,%p,%p,%p,%p)
\n
"
,
hKey
,
dwIndex
,
debugstr_w
(
lpszValue
),
pwLen
,
pwType
,
pvData
,
pcbData
);
return
RegEnumValueW
(
hKey
,
dwIndex
,
lpszValue
,
pwLen
,
NULL
,
pwType
,
pvData
,
pcbData
);
}
/*************************************************************************
* @ [SHLWAPI.205]
* @ [SHLWAPI.205]
*
*
* Get a value from the registry.
* Get a value from the registry.
...
...
dlls/shlwapi/shlwapi.spec
View file @
9f349eb9
...
@@ -698,8 +698,8 @@
...
@@ -698,8 +698,8 @@
@ stdcall SHDeleteValueW(long wstr wstr)
@ stdcall SHDeleteValueW(long wstr wstr)
@ stdcall SHEnumKeyExA(long long str ptr)
@ stdcall SHEnumKeyExA(long long str ptr)
@ stdcall SHEnumKeyExW(long long wstr ptr)
@ stdcall SHEnumKeyExW(long long wstr ptr)
@ stdcall SHEnumValueA(long long str ptr ptr ptr ptr)
@ stdcall SHEnumValueA(long long str ptr ptr ptr ptr)
shcore.SHEnumValueA
@ stdcall SHEnumValueW(long long wstr ptr ptr ptr ptr)
@ stdcall SHEnumValueW(long long wstr ptr ptr ptr ptr)
shcore.SHEnumValueW
@ stdcall SHGetInverseCMAP ( ptr long )
@ stdcall SHGetInverseCMAP ( ptr long )
@ stdcall SHGetThreadRef(ptr) shcore.SHGetThreadRef
@ stdcall SHGetThreadRef(ptr) shcore.SHGetThreadRef
@ stdcall SHGetValueA ( long str str ptr ptr ptr )
@ stdcall SHGetValueA ( long str str ptr ptr 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