Previous Next

KEY_INFORMATION_CLASS

The KEY_INFORMATION_CLASS enumeration type represents the type of information to supply about a registry key.

typedef enum _KEY_INFORMATION_CLASS {
  KeyBasicInformation,
  KeyNodeInformation,
  KeyFullInformation 
} KEY_INFORMATION_CLASS;

Enumerators

KeyBasicInformation
Specifies that a KEY_BASIC_INFORMATION structure is supplied.
KeyNodeInformation
Specifies that a KEY_NODE_INFORMATION structure is supplied.
KeyFullInformation
Specifies that a KEY_FULL_INFORMATION structure is supplied.

Headers

Declared in wdm.h and ntddk.h. Include wdm.h or ntddk.h.

Comments

Use the KEY_INFORMATION_CLASS values to specify the type of data to be supplied by the ZwEnumerateKey and ZwQueryKey routines.

See Also

KEY_BASIC_INFORMATION, KEY_FULL_INFORMATION, KEY_NODE_INFORMATION, ZwEnumerateKey, ZwQueryKey