REG_POST_CREATE_KEY_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

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;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wdm-_reg_post_create_key_information)

_REG_POST_CREATE_KEY_INFORMATION structure

Description

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

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.

See also

RegistryCallback

UNICODE_STRING

ZwCreateKey