REG_QUERY_KEY_INFORMATION struttura (wdm.h)
La struttura REG_QUERY_KEY_INFORMATION descrive i metadati che devono essere sottoposti a query per una chiave.
Sintassi
typedef struct _REG_QUERY_KEY_INFORMATION {
PVOID Object;
KEY_INFORMATION_CLASS KeyInformationClass;
PVOID KeyInformation;
ULONG Length;
PULONG ResultLength;
PVOID CallContext;
PVOID ObjectContext;
PVOID Reserved;
} REG_QUERY_KEY_INFORMATION, *PREG_QUERY_KEY_INFORMATION;
Members
Object
Puntatore all'oggetto chiave del Registro di sistema per la chiave il cui metadati sta per essere eseguito una query.
KeyInformationClass
Valore KEY_INFORMATION_CLASS che indica il tipo di informazioni da restituire dal sistema.
KeyInformation
Puntatore a un buffer che contiene le informazioni da restituire dal sistema. Il formato del buffer dipende dal valore di KeyInformationClass. Per altre informazioni, vedere KEY_INFORMATION_CLASS.
Length
Specifica le dimensioni, in byte, del buffer KeyInformation .
ResultLength
Puntatore a una variabile che riceve (dal sistema) la quantità di dati validi, in byte, nel buffer KeyInformation .
CallContext
Informazioni di contesto definite dal driver facoltative che la routine RegistryCallback del driver può fornire. Questo membro è definito per Windows Vista e versioni successive del sistema operativo Windows.
ObjectContext
Puntatore a informazioni di 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
Il sistema passa questa struttura alla routine RegistryCallback ogni volta che un thread tenta di eseguire query sui metadati per una chiave, ad esempio quando un thread in modalità utente chiama RegQueryInfoKey o quando un driver chiama ZwQueryKey.
Per altre informazioni sulle operazioni di filtro del Registro di sistema, vedere Filtro delle chiamate del Registro di sistema.
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato | Disponibile in Microsoft Windows XP e versioni successive del sistema operativo Windows. |
Intestazione | wdm.h (include Wdm.h, Ntddk.h, Ntifs.h) |