Group: Registry - Library: advapi32
Class library providing access to the System Registry
LONG RegQueryInfoKey(
HKEY hKey,
LPTSTR lpClass,
LPDWORD lpcClass,
LPDWORD lpReserved,
LPDWORD lpcSubKeys,
LPDWORD lpcMaxSubKeyLen,
LPDWORD lpcMaxClassLen,
LPDWORD lpcValues,
LPDWORD lpcMaxValueNameLen,
LPDWORD lpcMaxValueLen,
LPDWORD lpcbSecurityDescriptor,
PFILETIME lpftLastWriteTime
);
DECLARE INTEGER RegQueryInfoKey IN advapi32;
INTEGER hKey,;
STRING @ lpClass,;
INTEGER @ lpcbClass,;
INTEGER lpReserved,;
INTEGER @ lpcSubKeys,;
INTEGER @ lpcbMaxSubKeyLen,;
INTEGER @ lpcbMaxClassLen,;
INTEGER @ lpcValues,;
INTEGER @ lpcbMaxValueNameLen,;
INTEGER @ lpcbMaxValueLen,;
INTEGER lpcbSecurityDescr,;
INTEGER lpftLastWriteTime
hKey [in] Handle to an open key.
lpClass [out] Pointer to a buffer that receives the null-terminated class string of the key.
lpcClass [in, out] Pointer to a variable that specifies the size of the buffer pointed to by the lpClass parameter, in characters.
lpReserved Reserved; must be NULL.
lpcSubKeys [out] Pointer to a variable that receives the number of subkeys contained by the specified key.
lpcMaxSubKeyLen [out] Pointer to a variable that receives the size of the key"s subkey with the longest name, in characters, not including the terminating null character.
lpcMaxClassLen [out] Pointer to a variable that receives the size of the longest string specifying a subkey class, in characters.
lpcValues [out] Pointer to a variable that receives the number of values associated with the key.
lpcMaxValueNameLen [out] Pointer to a variable that receives the size of the key"s longest value name, in characters.
lpcMaxValueLen [out] Pointer to a variable that receives the size of the longest data component among the key"s values, in bytes.
lpcbSecurityDescriptor [out] Pointer to a variable that receives the size of the key"s security descriptor, in bytes.
lpftLastWriteTime [out] Pointer to a FILETIME structure that receives the last write time.
If the function succeeds, the return value is ERROR_SUCCESS (0).
See also RegDeleteKey, RegEnumKeyEx, RegEnumValue, RegQueryValueEx.