shlwapi: Forward SHEnumValue() to shcore.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
5f42d67dc5
commit
9f349eb978
|
@ -1666,51 +1666,6 @@ LONG WINAPI SHEnumKeyExW(HKEY hKey, DWORD dwIndex, LPWSTR lpszSubKey,
|
|||
return RegEnumKeyExW(hKey, dwIndex, lpszSubKey, pwLen, NULL, NULL, NULL, NULL);
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* 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]
|
||||
*
|
||||
|
|
|
@ -698,8 +698,8 @@
|
|||
@ stdcall SHDeleteValueW(long wstr wstr)
|
||||
@ stdcall SHEnumKeyExA(long long str ptr)
|
||||
@ stdcall SHEnumKeyExW(long long wstr ptr)
|
||||
@ stdcall SHEnumValueA(long long str ptr ptr ptr ptr)
|
||||
@ stdcall SHEnumValueW(long long wstr ptr ptr ptr ptr)
|
||||
@ stdcall SHEnumValueA(long long str ptr ptr ptr ptr) shcore.SHEnumValueA
|
||||
@ stdcall SHEnumValueW(long long wstr ptr ptr ptr ptr) shcore.SHEnumValueW
|
||||
@ stdcall SHGetInverseCMAP ( ptr long )
|
||||
@ stdcall SHGetThreadRef(ptr) shcore.SHGetThreadRef
|
||||
@ stdcall SHGetValueA ( long str str ptr ptr ptr )
|
||||
|
|
Loading…
Reference in New Issue