estructura REG_SET_INFORMATION_KEY_INFORMATION (wdm.h)

La estructura de REG_SET_INFORMATION_KEY_INFORMATION describe una nueva configuración para los metadatos de una clave.

Sintaxis

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;

Miembros

Object

Puntero al objeto de clave del Registro para la clave cuyos metadatos están a punto de cambiarse.

KeySetInformationClass

Valor de KEY_SET_INFORMATION_CLASS que indica el tipo de información que se va a cambiar.

KeySetInformation

Puntero a un búfer que contiene la información sobre cómo escribir. El formato del búfer depende del valor de KeySetInformationClass. Para obtener más información, consulte KEY_SET_INFORMATION_CLASS.

KeySetInformationLength

Tamaño, en bytes, del búfer KeySetInformation .

CallContext

Información de contexto opcional definida por el controlador que puede proporcionar la rutina RegistryCallback del controlador. Este miembro se define para Windows Vista y versiones posteriores del sistema operativo Windows.

ObjectContext

Puntero a la información de contexto definida por el controlador que el controlador ha asociado a un objeto del Registro llamando a CmSetCallbackObjectContext. Este miembro se define para Windows Vista y versiones posteriores del sistema operativo Windows.

Reserved

Este miembro se reserva para uso futuro. Este miembro se define para Windows Vista y versiones posteriores del sistema operativo Windows.

Comentarios

Para obtener más información sobre las operaciones de filtrado del registro, consulte Filtrado de llamadas del Registro.

Requisitos

Requisito Valor
Header wdm.h (incluya Wdm.h, Ntddk.h, Ntifs.h)

Consulte también

CmSetCallbackObjectContext

RegistryCallback