// wdm.h
typedef union _OB_PRE_OPERATION_PARAMETERS {
OB_PRE_CREATE_HANDLE_INFORMATION CreateHandleInformation;
OB_PRE_DUPLICATE_HANDLE_INFORMATION DuplicateHandleInformation;
} OB_PRE_OPERATION_PARAMETERS, *POB_PRE_OPERATION_PARAMETERS;
View the official Windows Driver Kit DDI referenceNo description available.
The OB_PRE_OPERATION_PARAMETERS union describes the operation-specific parameters for an ObjectPreCallback routine.
CreateHandleInformationAn OB_PRE_CREATE_HANDLE_INFORMATION structure that contains information that is specific to a handle that is being opened.
DuplicateHandleInformationAn OB_PRE_DUPLICATE_HANDLE_INFORMATION structure that contains information that is specific to a handle that is being duplicated.
OB_PRE_CREATE_HANDLE_INFORMATION
OB_PRE_DUPLICATE_HANDLE_INFORMATION