CreateOPMProtectedOutputs 函数

重要

输出保护管理器 (OPM) 使用此函数访问显示驱动程序中的功能。 应用程序不应调用此函数。

 

为显示设备创建受保护的输出对象。

语法

NTSTATUS WINAPI CreateOPMProtectedOutputs(
  _In_  PUNICODE_STRING                    pstrDeviceName,
  _In_  DXGKMDT_OPM_VIDEO_OUTPUT_SEMANTICS vos,
  _In_  DWORD                              dwOPMProtectedOutputArraySize,
  _Out_ DWORD                              *pdwNumOPMProtectedOutputsInArray,
  _Out_ OPM_PROTECTED_OUTPUT_HANDLE        *pohOPMProtectedOutputArray
);

参数

pstrDeviceName [in]

指向包含显示设备名称 的UNICODE_STRING 结构的指针,由 GetMonitorInfo 函数返回。

vos [in]

DXGKMDT_OPM_VIDEO_OUTPUT_SEMANTICS 枚举的成员,指定受保护输出是具有认证输出保护协议 (COPP) 语义还是 OPM 语义。

dwOPMProtectedOutputArraySize [in]

pohOPMProtectedOutputArray 数组中的元素数。

pdwNumOPMProtectedOutputsInArray [out]

接收函数复制到 pohOPMProtectedOutputArray 数组的项数。

pohOPMProtectedOutputArray [out]

接收受保护输出对象的句柄的数组。 必须通过调用 DestroyOPMProtectedOutput 释放每个句柄。

返回值

如果方法成功,则返回 STATUS_SUCCESS。 否则,它将返回 NTSTATUS 错误代码。

备注

应用程序应调用以下函数之一,而不是使用此函数:

此函数没有关联的导入库。 若要调用此函数,必须使用 LoadLibraryGetProcAddress 函数动态链接到Gdi32.dll。

要求

要求
最低受支持的客户端
Windows Vista [仅限桌面应用]
最低受支持的服务器
Windows Server 2008 [仅限桌面应用]
DLL
Gdi32.dll

另请参阅

OPM 函数

输出保护管理器