1 out of 1 rated this helpful - Rate this topic

KEY_VALUE_INFORMATION_CLASS enumeration

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

Syntax


typedef enum _KEY_VALUE_INFORMATION_CLASS { 
  KeyValueBasicInformation           = 0,
  KeyValueFullInformation            = 1,
  KeyValuePartialInformation         = 2,
  KeyValueFullInformationAlign64     = 3,
  KeyValuePartialInformationAlign64  = 4,
  MaxKeyValueInfoClass               = 5
} KEY_VALUE_INFORMATION_CLASS;

Constants

KeyValueBasicInformation

Specifies that a KEY_VALUE_BASIC_INFORMATION structure is supplied.

KeyValueFullInformation

Specifies that a KEY_VALUE_FULL_INFORMATION structure is supplied.

KeyValuePartialInformation

Specifies that a KEY_VALUE_PARTIAL_INFORMATION structure is supplied.

KeyValueFullInformationAlign64

TBD

KeyValuePartialInformationAlign64

TBD

MaxKeyValueInfoClass

The maximum value in this enumeration type.

Remarks

Use the KEY_VALUE_INFORMATION_CLASS values to specify the type of data to be supplied by the ZwEnumerateValueKey and ZwQueryValueKey routines.

Requirements

Header

Wdm.h (include Wdm.h, Ntddk.h, or Ntifs.h)

See also

KEY_VALUE_BASIC_INFORMATION
KEY_VALUE_FULL_INFORMATION
KEY_VALUE_PARTIAL_INFORMATION
ZwEnumerateValueKey
ZwQueryValueKey

 

 

Send comments about this topic to Microsoft

Build date: 5/22/2013

© 2013 Microsoft. All rights reserved.