| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/ |
Upload File : |
//
//---------------------------------------------------------------------------
//
// Copyright (c) 2014 Microsoft Corporation
//
// Abstract:
//
// Simple OPM API for XBOX
//
//---------------------------------------------------------------------------
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
//
// Supported HDCP version for the system
// OPM_HDCP_TYPE_0 --> all downsteam tree supports all version fo HDCP including v1.4
// OPM_HDCP_TYPE_1 --> all downsteam tree must be HDCP 2.2
//
typedef enum OPM_HDCP_TYPE
{
OPM_HDCP_TYPE_0 = 0,
OPM_HDCP_TYPE_1,
} OPM_HDCP_TYPE;
//
// HDCP status, on or off
//
typedef enum OPM_HDCP_STATUS
{
OPM_HDCP_STATUS_ON = 0,
OPM_HDCP_STATUS_OFF,
} OPM_HDCP_STATUS;
//
// Request to Enable particular HDCP version
//
HRESULT OPMXboxEnableHDCP(
OPM_HDCP_TYPE HDCPType);
//
// Retrieve HDCP on/off status
//
HRESULT OPMXboxGetHDCPStatus(OPM_HDCP_STATUS *pHDCPStatus);
//
// Retrieve HDCP on/off status and type
//
HRESULT OPMXboxGetHDCPStatusAndType(OPM_HDCP_STATUS *pHDCPStatus, OPM_HDCP_TYPE *pHDCPType);
#ifdef __cplusplus
}
#endif