typedef struct _KEY_VALUE_PARTIAL_INFORMATION {
ULONG TitleIndex;
ULONG Type;
ULONG DataLength;
UCHAR Data[1]; // Variable size
} KEY_VALUE_PARTIAL_INFORMATION, *PKEY_VALUE_PARTIAL_INFORMATION;
KEY_VALUE_PARTIAL_INFORMATION defines a subset of the value information available for a value entry of a registry key.
Members
TitleIndex
Device and intermediate drivers should ignore this member.
Type
The system-defined type for the registry value in the Data member. For a summary of these types, see KEY_VALUE_BASIC_INFORMATION.
DataLength
The size in bytes of the Data member.
Data
A value entry of the key.
See Also
KEY_VALUE_BASIC_INFORMATION, ZwEnumerateValueKey, ZwQueryValueKey