OB_POST_OPERATION_PARAMETERS - NtDoc

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

typedef union _OB_POST_OPERATION_PARAMETERS {
  OB_POST_CREATE_HANDLE_INFORMATION    CreateHandleInformation;
  OB_POST_DUPLICATE_HANDLE_INFORMATION DuplicateHandleInformation;
} OB_POST_OPERATION_PARAMETERS, *POB_POST_OPERATION_PARAMETERS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

_OB_POST_OPERATION_PARAMETERS structure

Description

The OB_POST_OPERATION_PARAMETERS union describes the operation-specific parameters for an ObjectPostCallback routine.

Members

CreateHandleInformation

An OB_POST_CREATE_HANDLE_INFORMATION structure that contains information that is specific to a handle that is being opened.

DuplicateHandleInformation

An OB_POST_DUPLICATE_HANDLE_INFORMATION structure that contains information that is specific to a handle that is being duplicated.

See also

OB_POST_CREATE_HANDLE_INFORMATION

OB_POST_DUPLICATE_HANDLE_INFORMATION

ObjectPostCallback