Win32 API 日本語リファレンス
ホームMedia.MediaFoundation › OPM_SET_PROTECTION_LEVEL_PARAMETERS

OPM_SET_PROTECTION_LEVEL_PARAMETERS

構造体
サイズx64: 16 バイト / x86: 16 バイトパッキング1

サイズ=各フィールドのバイト数(x64/x86 で異なる場合は x64/x86 と併記)。x64/x86 列=フィールドのバイトオフセット(HSPで dupptr / lpoke / wpoke 等に使用)。

フィールド

フィールドサイズx64x86説明
ulProtectionTypeDWORD4+0+0保護メカニズムを識別します。指定可能な値の一覧については、OPM Protection Type Flags を参照してください。
ulProtectionLevelDWORD4+4+4

保護レベルを指定します。この値の意味は、照会する保護メカニズムによって異なります。次の表に示すように、保護メカニズムごとに異なる列挙型のフラグが値となります。

保護メカニズム 列挙型
ACP OPM_ACP_PROTECTION_LEVEL
CGMS-A CGMS-A Protection Flags
DPCP OPM_DPCP_PROTECTION_LEVEL
HDCP OPM_HDCP_PROTECTION_LEVEL
ReservedDWORD4+8+8将来の使用のために予約済みです。0 に設定します。
Reserved2DWORD4+12+12将来の使用のために予約済みです。0 に設定します。

公式ドキュメント

Output Protection Manager (OPM) の OPM_SET_PROTECTION_LEVEL コマンドのデータを格納します。

解説(Remarks)

この構造体のレイアウトは、Certified Output Protection Protocol (COPP) で使用される DXVA_COPPSetProtectionLevelCmdData 構造体と同一です。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

#include <windows.h>

// OPM_SET_PROTECTION_LEVEL_PARAMETERS  (x64 16 / x86 16 バイト)
#pragma pack(push, 1)
typedef struct OPM_SET_PROTECTION_LEVEL_PARAMETERS {
    DWORD ulProtectionType;
    DWORD ulProtectionLevel;
    DWORD Reserved;
    DWORD Reserved2;
} OPM_SET_PROTECTION_LEVEL_PARAMETERS;
#pragma pack(pop)
using System;
using System.Runtime.InteropServices;

[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Unicode)]
public struct OPM_SET_PROTECTION_LEVEL_PARAMETERS
{
    public uint ulProtectionType;
    public uint ulProtectionLevel;
    public uint Reserved;
    public uint Reserved2;
}
Imports System.Runtime.InteropServices

<StructLayout(LayoutKind.Sequential, Pack:=1, CharSet:=CharSet.Unicode)>
Public Structure OPM_SET_PROTECTION_LEVEL_PARAMETERS
    Public ulProtectionType As UInteger
    Public ulProtectionLevel As UInteger
    Public Reserved As UInteger
    Public Reserved2 As UInteger
End Structure
import ctypes
from ctypes import wintypes

class OPM_SET_PROTECTION_LEVEL_PARAMETERS(ctypes.Structure):
    _pack_ = 1
    _fields_ = [
        ("ulProtectionType", wintypes.DWORD),
        ("ulProtectionLevel", wintypes.DWORD),
        ("Reserved", wintypes.DWORD),
        ("Reserved2", wintypes.DWORD),
    ]
#[repr(C, packed(1))]
pub struct OPM_SET_PROTECTION_LEVEL_PARAMETERS {
    pub ulProtectionType: u32,
    pub ulProtectionLevel: u32,
    pub Reserved: u32,
    pub Reserved2: u32,
}
import "golang.org/x/sys/windows"

type OPM_SET_PROTECTION_LEVEL_PARAMETERS struct {
	ulProtectionType uint32
	ulProtectionLevel uint32
	Reserved uint32
	Reserved2 uint32
}
type
  OPM_SET_PROTECTION_LEVEL_PARAMETERS = packed record
    ulProtectionType: DWORD;
    ulProtectionLevel: DWORD;
    Reserved: DWORD;
    Reserved2: DWORD;
  end;
const OPM_SET_PROTECTION_LEVEL_PARAMETERS = extern struct {
    ulProtectionType: u32,
    ulProtectionLevel: u32,
    Reserved: u32,
    Reserved2: u32,
};
type
  OPM_SET_PROTECTION_LEVEL_PARAMETERS {.packed.} = object
    ulProtectionType: uint32
    ulProtectionLevel: uint32
    Reserved: uint32
    Reserved2: uint32
align(1)
struct OPM_SET_PROTECTION_LEVEL_PARAMETERS
{
    uint ulProtectionType;
    uint ulProtectionLevel;
    uint Reserved;
    uint Reserved2;
}

HSP用 定義

HSP3.7/3.8 は構造体機能が無いため4byte整数配列(dim)+peek/poke で操作(32/64bitでサイズ・位置が異なる場合はタブで分割)。IronHSP は NSTRUCT(#defstruct/stdim/->)で32/64bit共通。

; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x64 レイアウト)
; OPM_SET_PROTECTION_LEVEL_PARAMETERS サイズ: 16 バイト(x64)
dim st, 4    ; 4byte整数×4(構造体サイズ 16 / 4 切り上げ)
; ulProtectionType : DWORD (+0, 4byte)  st.0 = 値  /  値 = st.0   (lpoke/lpeek も可)
; ulProtectionLevel : DWORD (+4, 4byte)  st.1 = 値  /  値 = st.1   (lpoke/lpeek も可)
; Reserved : DWORD (+8, 4byte)  st.2 = 値  /  値 = st.2   (lpoke/lpeek も可)
; Reserved2 : DWORD (+12, 4byte)  st.3 = 値  /  値 = st.3   (lpoke/lpeek も可)
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。
; IronHSP は NSTRUCT(構造体)をサポート。32bit/64bit どちらでも同じコードで動作します。
#defstruct global OPM_SET_PROTECTION_LEVEL_PARAMETERS, pack=1
    #field int ulProtectionType
    #field int ulProtectionLevel
    #field int Reserved
    #field int Reserved2
#endstruct

stdim st, OPM_SET_PROTECTION_LEVEL_PARAMETERS        ; NSTRUCT 変数を確保
st->ulProtectionType = 100
mes "ulProtectionType=" + st->ulProtectionType