SHRegGetValueA(3w)
NAME
SHRegGetValueA (SHLWAPI.@)
SYNOPSIS
DWORD SHRegGetValueA ( HKEY hKey, LPCSTR lpszSubKey, LPCSTR lpszValue, DWORD srrfFlags, LPDWORD pwType, LPVOID pvData, LPDWORD pcbData )
DESCRIPTION
Get a value from the registry.
PARAMS
hKey [In] Handle to registry key.
lpszSubKey [In] Name of sub key containing value to get.
lpszValue [In] Name of value to get.
srrf [In] Flags for restricting returned data.
pwType [Out] Pointer to the values type.
pvData [Out] Pointer to the values data.
pcbData [Out] Pointer to the values size.
RETURNS
Success: ERROR_SUCCESS. Output parameters contain the details read.
Failure: An error code from RegOpenKeyExA(3w) or SHQueryValueExA(3w).
IMPLEMENTATION
Not defined in a Wine header. The function is either undocumented, or
missing from Wine.
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/shlwapi/reg.c".
- Debug channel "shell".