// 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 referenceNo description available.
The OB_POST_OPERATION_PARAMETERS union describes the operation-specific parameters for an ObjectPostCallback routine.
CreateHandleInformationAn OB_POST_CREATE_HANDLE_INFORMATION structure that contains information that is specific to a handle that is being opened.
DuplicateHandleInformationAn OB_POST_DUPLICATE_HANDLE_INFORMATION structure that contains information that is specific to a handle that is being duplicated.
OB_POST_CREATE_HANDLE_INFORMATION
OB_POST_DUPLICATE_HANDLE_INFORMATION