QueryRegistryValue(3w)
NAME
QueryRegistryValue (SETUPAPI.@)
SYNOPSIS
LONG QueryRegistryValue ( HKEY hKey, LPCWSTR lpValueName, LPBYTE* lpData, LPDWORD lpType, LPDWORD lpcbData )
DESCRIPTION
Retrieves value data from the registry and allocates memory for the
value data.
PARAMS
hKey [In] Handle of the key to query.
lpValueName [In] Name of value under hkey to query.
lpData [Out] Destination for the values contents,.
lpType [Out] Destination for the value type.
lpcbData [Out] Destination for the size of data.
RETURNS
Success: ERROR_SUCCESS
Failure: Otherwise.
NOTES
Use MyFree to release the lpData buffer.
IMPLEMENTATION
Defined in "setupapi.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/setupapi/misc.c".
- Debug channel "setupapi".