// iddcx.h
EVT_IDD_CX_MONITOR_OPM_GET_INFOMATION EvtIddCxMonitorOpmGetInfomation;
NTSTATUS EvtIddCxMonitorOpmGetInfomation(
[in] IDDCX_OPMCTX OpmCxtObject,
[in] const IDARG_IN_OPM_GET_INFOMATION *pInArgs,
[out] IDARG_OUT_OPM_GET_INFOMATION *pOutArgs
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
EVT_IDD_CX_MONITOR_OPM_GET_INFOMATION is called by the OS to get OPM information.
OpmCxtObject [in]The object for the OPM context that information will be gotten from.
pInArgs [in]Input arguments used by EVT_IDD_CX_MONITOR_OPM_GET_INFOMATION.
pOutArgs [out]Output arguments returned by EVT_IDD_CX_MONITOR_OPM_GET_INFOMATION.
(NTSTATUS) If the operation is successful, the callback function must return STATUS_SUCCESS, or another status value for which NT_SUCCESS(status) equals TRUE. Otherwise, an appropriate NTSTATUS error code.