// iddcx.h
EVT_IDD_CX_MONITOR_OPM_GET_CERTIFICATE EvtIddCxMonitorOpmGetCertificate;
NTSTATUS EvtIddCxMonitorOpmGetCertificate(
[in] IDDCX_ADAPTER AdapterObject,
[in] const IDARG_IN_OPM_GET_CERTIFICATE *pInArgs
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
EVT_IDD_CX_MONITOR_OPM_GET_CERTIFICATE is called by the OS to get an OPM certificate.
AdapterObject [in]The object for the adapter that the OPM certificate will be gotten for.
pInArgs [in]Input arguments used by EVT_IDD_CX_MONITOR_OPM_GET_CERTIFICATE.
(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.