Scroll to navigation

SHGetValueGoodBootA(3w) Wine API SHGetValueGoodBootA(3w)

NAME

SHGetValueGoodBootA (SHLWAPI.205)

SYNOPSIS

DWORD SHGetValueGoodBootA
(
HKEY hkey,
LPCSTR pSubKey,
LPCSTR pValue,
LPDWORD pwType,
LPVOID pvData,
LPDWORD pbData
)
 

DESCRIPTION

Get a value from the registry.
 

PARAMS

hKey [In] Handle to registry key.
pSubKey [In] Name of sub key containing value to get.
pValue [In] Name of value to get.
pwType [Out] Destination for the values type.
pvData [Out] Destination for the values data.
pbData [Out] Destination for the values size.
 

RETURNS

Success: ERROR_SUCCESS. Output parameters contain the details read.
Failure: An error code from RegOpenKeyExA(3w) or SHQueryValueExA(3w), or ERROR_INVALID_FUNCTION in the machine is in safe mode.
 

IMPLEMENTATION

Exported by ordinal only. Use GetProcAddress(3w) to obtain a pointer to the function.
Implemented in "dlls/shlwapi/reg.c".
Debug channel "shell".
Oct 2012 Wine API