REG_POST_CREATE_KEY_INFORMATION structure (wdm.h)

The REG_POST_CREATE_KEY_INFORMATION structure contains the result of an attempt to create a registry key.

Syntax

typedef struct _REG_POST_CREATE_KEY_INFORMATION {
  PUNICODE_STRING CompleteName;
  PVOID           Object;
  NTSTATUS        Status;
} REG_POST_CREATE_KEY_INFORMATION, REG_POST_OPEN_KEY_INFORMATION, *PREG_POST_CREATE_KEY_INFORMATION, *PREG_POST_OPEN_KEY_INFORMATION;

Members

CompleteName

A pointer to a UNICODE_STRING structure that specifies the complete path of the registry key.

Object

A pointer to the registry key object that was created.

Status

The NTSTATUS value that the system will return for the registry operation.

Remarks

For more information about registry filtering operations, see Filtering Registry Calls.

Requirements

Requirement Value
Minimum supported client Available only on Microsoft Windows XP.
Header wdm.h (include Wdm.h, Ntddk.h, Ntifs.h)

See also

RegistryCallback

UNICODE_STRING

ZwCreateKey