// iddcx.h
EVT_IDD_CX_MONITOR_OPM_CONFIGURE_PROTECTED_OUTPUT EvtIddCxMonitorOpmConfigureProtectedOutput;
NTSTATUS EvtIddCxMonitorOpmConfigureProtectedOutput(
[in] IDDCX_OPMCTX OpmCxtObject,
[in] const IDARG_IN_OPM_CONFIGURE_PROTECTED_OUTPUT *pInArgs
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
EVT_IDD_CX_MONITOR_OPM_CONFIGURE_PROTECTED_OUTPUT is called by the OS to configure the protected output.
OpmCxtObject [in]A context used by the OS to identify the OPM context to configure output for.
pInArgs [in]Input arguments used by EVT_IDD_CX_MONITOR_OPM CONFIGURE_PROTECTED_OUTPUT.
(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.