OB_POST_OPERATION_PARAMETERS union (wdm.h)

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

Syntax

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;

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.

Requirements

Requirement Value
Minimum supported client Available in Windows Server 2008 and later versions of the Windows operating system.
Header wdm.h (include Wdm.h, Ntddk.h, Ntifs.h)

See also

OB_POST_CREATE_HANDLE_INFORMATION

OB_POST_DUPLICATE_HANDLE_INFORMATION

ObjectPostCallback