// 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 referenceNo description available.
The REG_POST_CREATE_KEY_INFORMATION structure contains the result of an attempt to create a registry key.
CompleteNameA pointer to a UNICODE_STRING structure that specifies the complete path of the registry key.
ObjectA pointer to the registry key object that was created.
StatusThe NTSTATUS value that the system will return for the registry operation.
For more information about registry filtering operations, see Filtering Registry Calls.