struttura REG_SET_INFORMATION_KEY_INFORMATION (wdm.h)

La struttura REG_SET_INFORMATION_KEY_INFORMATION descrive una nuova impostazione per i metadati di una chiave.

Sintassi

typedef struct _REG_SET_INFORMATION_KEY_INFORMATION {
  PVOID                     Object;
  KEY_SET_INFORMATION_CLASS KeySetInformationClass;
  PVOID                     KeySetInformation;
  ULONG                     KeySetInformationLength;
  PVOID                     CallContext;
  PVOID                     ObjectContext;
  PVOID                     Reserved;
} REG_SET_INFORMATION_KEY_INFORMATION, *PREG_SET_INFORMATION_KEY_INFORMATION;

Members

Object

Puntatore all'oggetto chiave del Registro di sistema per la chiave i cui metadati sta per essere modificati.

KeySetInformationClass

Valore KEY_SET_INFORMATION_CLASS che indica il tipo di informazioni da modificare.

KeySetInformation

Puntatore a un buffer contenente le informazioni da scrivere. Il formato del buffer dipende dal valore di KeySetInformationClass. Per altre informazioni, vedere KEY_SET_INFORMATION_CLASS.

KeySetInformationLength

Dimensioni, in byte, del buffer KeySetInformation .

CallContext

Informazioni sul contesto facoltative definite dal driver che la routine RegistryCallback del driver può fornire. Questo membro è definito per Windows Vista e versioni successive del sistema operativo Windows.

ObjectContext

Puntatore alle informazioni sul contesto definite dal driver associate a un oggetto del Registro di sistema chiamando CmSetCallbackObjectContext. Questo membro è definito per Windows Vista e versioni successive del sistema operativo Windows.

Reserved

Questo membro è riservato per usi futuri. Questo membro è definito per Windows Vista e versioni successive del sistema operativo Windows.

Commenti

Per altre informazioni sulle operazioni di filtro del Registro di sistema, vedere Filtro delle chiamate al Registro di sistema.

Requisiti

Requisito Valore
Intestazione wdm.h (include Wdm.h, Ntddk.h, Ntifs.h)

Vedi anche

CmSetCallbackObjectContext

RegistryCallback