typedef struct _KEY_BASIC_INFORMATION {
LARGE_INTEGER LastWriteTime;
ULONG TitleIndex;
ULONG NameLength;
WCHAR Name[1]; // Variable-length string
} KEY_BASIC_INFORMATION, *PKEY_BASIC_INFORMATION;
KEY_BASIC_INFORMATION defines a subset of the full information available for a registry key.
Members
LastWriteTime
The last time the key or any of its values changed.
TitleIndex
Device and intermediate drivers should ignore this member.
NameLength
The size in bytes of the following name, including the zero-terminating character.
Name
A zero-terminated Unicode string naming the key.
See Also