IddCxMonitorGetSrmListVersion - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// iddcx.h

NTSTATUS IddCxMonitorGetSrmListVersion(
  [in]  IDDCX_MONITOR                    MonitorObject,
  [in]  const IDARG_IN_GETSRMLISTVERSION *pInArgs,
  [out] IDARG_OUT_GETSRMLISTVERSION      *pOutArgs
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-iddcx-iddcxmonitorgetsrmlistversion)

IddCxMonitorGetSrmListVersion function

Description

IddCxMonitorGetSrmListVersion retrieves the latest System Renewability Message (SRM) list version stored by the GPU.

Parameters

MonitorObject [in]

The IDDCX_MONITOR object that the SRM list is associated with.

pInArgs [in]

Pointer to an IDARG_IN_GETSRMLISTVERSION structure with input parameters.

pOutArgs [out]

Pointer to an IDARG_OUT_GETSRMLISTVERSION structure in which the OS returns output.

Return value

If the routine succeeds it returns STATUS_SUCCESS; otherwise it returns an appropriate error code such as one of the following:

Error code Meaning
STATUS_GRAPHICS_OPM_NOT_SUPPORTED The GPU driver does not support this functionality.
STATUS_NO_DATA_DETECTED The GPU does not have a current SRM list.
STATUS_BUFFER_TOO_SMALL The buffer that pOutArgs points to is too small.

Remarks

An indirect display driver (IDD) calls IddCxMonitorGetSrmListVersion to retrieve the latest SRM list version stored by the GPU. To set an SRM list, call IddCxMonitorSetSrmList.

SRMs are used to update the list of revoked High-Bandwidth Digital Content Protection (HDCP) devices, and are delivered with the video content.

See also

IDARG_IN_GETSRMLISTVERSION

IDARG_OUT_GETSRMLISTVERSION

IddCxMonitorSetSrmList