ホーム › Media.MediaFoundation › MFGetContentProtectionSystemCLSID
MFGetContentProtectionSystemCLSID
関数保護システムIDに対応するコンテンツ保護のCLSIDを取得する。
シグネチャ
// MFPlat.dll
#include <windows.h>
HRESULT MFGetContentProtectionSystemCLSID(
const GUID* guidProtectionSystemID,
GUID* pclsid
);パラメーター
| 名前 | 型 | 方向 | 説明 |
|---|---|---|---|
| guidProtectionSystemID | GUID* | in | コンテンツ保護システムを識別する GUID。 |
| pclsid | GUID* | out | コンテンツ保護システムのクラス識別子を受け取ります。 |
戻り値の型: HRESULT
公式ドキュメント
コンテンツ保護システムのクラス識別子を取得します。
戻り値
この関数が成功した場合は S_OK を返します。それ以外の場合は HRESULT エラーコードを返します。
解説(Remarks)
クラス識別子は、コンテンツ保護システムの入力信頼機関 (ITA: input trust authority) を作成するために使用できます。CoCreateInstance または IMFPMPHost::CreateObjectByCLSID を呼び出して、IMFTrustedInput ポインターを取得します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での呼び出し定義
// MFPlat.dll
#include <windows.h>
HRESULT MFGetContentProtectionSystemCLSID(
const GUID* guidProtectionSystemID,
GUID* pclsid
);[DllImport("MFPlat.dll", ExactSpelling = true)]
static extern int MFGetContentProtectionSystemCLSID(
ref Guid guidProtectionSystemID, // GUID*
out Guid pclsid // GUID* out
);<DllImport("MFPlat.dll", ExactSpelling:=True)>
Public Shared Function MFGetContentProtectionSystemCLSID(
ByRef guidProtectionSystemID As Guid, ' GUID*
<Out> ByRef pclsid As Guid ' GUID* out
) As Integer
End Function' guidProtectionSystemID : GUID*
' pclsid : GUID* out
Declare PtrSafe Function MFGetContentProtectionSystemCLSID Lib "mfplat" ( _
ByVal guidProtectionSystemID As LongPtr, _
ByVal pclsid As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
MFGetContentProtectionSystemCLSID = ctypes.windll.mfplat.MFGetContentProtectionSystemCLSID
MFGetContentProtectionSystemCLSID.restype = ctypes.c_int
MFGetContentProtectionSystemCLSID.argtypes = [
ctypes.c_void_p, # guidProtectionSystemID : GUID*
ctypes.c_void_p, # pclsid : GUID* out
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('MFPlat.dll')
MFGetContentProtectionSystemCLSID = Fiddle::Function.new(
lib['MFGetContentProtectionSystemCLSID'],
[
Fiddle::TYPE_VOIDP, # guidProtectionSystemID : GUID*
Fiddle::TYPE_VOIDP, # pclsid : GUID* out
],
Fiddle::TYPE_INT)#[link(name = "mfplat")]
extern "system" {
fn MFGetContentProtectionSystemCLSID(
guidProtectionSystemID: *const GUID, // GUID*
pclsid: *mut GUID // GUID* out
) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[DllImport("MFPlat.dll")]
public static extern int MFGetContentProtectionSystemCLSID(ref Guid guidProtectionSystemID, out Guid pclsid);
"@
$api = Add-Type -MemberDefinition $sig -Name 'MFPlat_MFGetContentProtectionSystemCLSID' -Namespace Win32 -PassThru
# $api::MFGetContentProtectionSystemCLSID(guidProtectionSystemID, pclsid)#uselib "MFPlat.dll"
#func global MFGetContentProtectionSystemCLSID "MFGetContentProtectionSystemCLSID" sptr, sptr
; MFGetContentProtectionSystemCLSID varptr(guidProtectionSystemID), varptr(pclsid) ; 戻り値は stat
; guidProtectionSystemID : GUID* -> "sptr"
; pclsid : GUID* out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "MFPlat.dll" #cfunc global MFGetContentProtectionSystemCLSID "MFGetContentProtectionSystemCLSID" var, var ; res = MFGetContentProtectionSystemCLSID(guidProtectionSystemID, pclsid) ; guidProtectionSystemID : GUID* -> "var" ; pclsid : GUID* out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "MFPlat.dll" #cfunc global MFGetContentProtectionSystemCLSID "MFGetContentProtectionSystemCLSID" sptr, sptr ; res = MFGetContentProtectionSystemCLSID(varptr(guidProtectionSystemID), varptr(pclsid)) ; guidProtectionSystemID : GUID* -> "sptr" ; pclsid : GUID* out -> "sptr" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; HRESULT MFGetContentProtectionSystemCLSID(GUID* guidProtectionSystemID, GUID* pclsid) #uselib "MFPlat.dll" #cfunc global MFGetContentProtectionSystemCLSID "MFGetContentProtectionSystemCLSID" var, var ; res = MFGetContentProtectionSystemCLSID(guidProtectionSystemID, pclsid) ; guidProtectionSystemID : GUID* -> "var" ; pclsid : GUID* out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; HRESULT MFGetContentProtectionSystemCLSID(GUID* guidProtectionSystemID, GUID* pclsid) #uselib "MFPlat.dll" #cfunc global MFGetContentProtectionSystemCLSID "MFGetContentProtectionSystemCLSID" intptr, intptr ; res = MFGetContentProtectionSystemCLSID(varptr(guidProtectionSystemID), varptr(pclsid)) ; guidProtectionSystemID : GUID* -> "intptr" ; pclsid : GUID* out -> "intptr" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
mfplat = windows.NewLazySystemDLL("MFPlat.dll")
procMFGetContentProtectionSystemCLSID = mfplat.NewProc("MFGetContentProtectionSystemCLSID")
)
// guidProtectionSystemID (GUID*), pclsid (GUID* out)
r1, _, err := procMFGetContentProtectionSystemCLSID.Call(
uintptr(guidProtectionSystemID),
uintptr(pclsid),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // HRESULTfunction MFGetContentProtectionSystemCLSID(
guidProtectionSystemID: PGUID; // GUID*
pclsid: PGUID // GUID* out
): Integer; stdcall;
external 'MFPlat.dll' name 'MFGetContentProtectionSystemCLSID';result := DllCall("MFPlat\MFGetContentProtectionSystemCLSID"
, "Ptr", guidProtectionSystemID ; GUID*
, "Ptr", pclsid ; GUID* out
, "Int") ; return: HRESULT●MFGetContentProtectionSystemCLSID(guidProtectionSystemID, pclsid) = DLL("MFPlat.dll", "int MFGetContentProtectionSystemCLSID(void*, void*)")
# 呼び出し: MFGetContentProtectionSystemCLSID(guidProtectionSystemID, pclsid)
# guidProtectionSystemID : GUID* -> "void*"
# pclsid : GUID* out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。const std = @import("std");
extern "mfplat" fn MFGetContentProtectionSystemCLSID(
guidProtectionSystemID: [*c]GUID, // GUID*
pclsid: [*c]GUID // GUID* out
) callconv(std.os.windows.WINAPI) i32;proc MFGetContentProtectionSystemCLSID(
guidProtectionSystemID: ptr GUID, # GUID*
pclsid: ptr GUID # GUID* out
): int32 {.importc: "MFGetContentProtectionSystemCLSID", stdcall, dynlib: "MFPlat.dll".}pragma(lib, "mfplat");
extern(Windows)
int MFGetContentProtectionSystemCLSID(
GUID* guidProtectionSystemID, // GUID*
GUID* pclsid // GUID* out
);ccall((:MFGetContentProtectionSystemCLSID, "MFPlat.dll"), stdcall, Int32,
(Ptr{GUID}, Ptr{GUID}),
guidProtectionSystemID, pclsid)
# guidProtectionSystemID : GUID* -> Ptr{GUID}
# pclsid : GUID* out -> Ptr{GUID}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。local ffi = require("ffi")
ffi.cdef[[
int32_t MFGetContentProtectionSystemCLSID(
void* guidProtectionSystemID,
void* pclsid);
]]
local mfplat = ffi.load("mfplat")
-- mfplat.MFGetContentProtectionSystemCLSID(guidProtectionSystemID, pclsid)
-- guidProtectionSystemID : GUID*
-- pclsid : GUID* out
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。const koffi = require('koffi');
const lib = koffi.load('MFPlat.dll');
const MFGetContentProtectionSystemCLSID = lib.func('__stdcall', 'MFGetContentProtectionSystemCLSID', 'int32_t', ['void *', 'void *']);
// MFGetContentProtectionSystemCLSID(guidProtectionSystemID, pclsid)
// guidProtectionSystemID : GUID* -> 'void *'
// pclsid : GUID* out -> 'void *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。const lib = Deno.dlopen("MFPlat.dll", {
MFGetContentProtectionSystemCLSID: { parameters: ["pointer", "pointer"], result: "i32" },
});
// lib.symbols.MFGetContentProtectionSystemCLSID(guidProtectionSystemID, pclsid)
// guidProtectionSystemID : GUID* -> "pointer"
// pclsid : GUID* out -> "pointer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。<?php
$ffi = FFI::cdef(<<<C
int32_t MFGetContentProtectionSystemCLSID(
void* guidProtectionSystemID,
void* pclsid);
C, "MFPlat.dll");
// $ffi->MFGetContentProtectionSystemCLSID(guidProtectionSystemID, pclsid);
// guidProtectionSystemID : GUID*
// pclsid : GUID* out
// 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
// WINAPI(stdcall): x64 では呼出規約が統一されるため問題なし。x86 では __stdcall 対応のラッパが必要な場合あり。import com.sun.jna.*;
import com.sun.jna.ptr.*;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;
public interface Mfplat extends StdCallLibrary {
Mfplat INSTANCE = Native.load("mfplat", Mfplat.class);
int MFGetContentProtectionSystemCLSID(
Pointer guidProtectionSystemID, // GUID*
Pointer pclsid // GUID* out
);
}@[Link("mfplat")]
lib LibMFPlat
fun MFGetContentProtectionSystemCLSID = MFGetContentProtectionSystemCLSID(
guidProtectionSystemID : GUID*, # GUID*
pclsid : GUID* # GUID* out
) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。import 'dart:ffi';
import 'package:ffi/ffi.dart';
typedef MFGetContentProtectionSystemCLSIDNative = Int32 Function(Pointer<Void>, Pointer<Void>);
typedef MFGetContentProtectionSystemCLSIDDart = int Function(Pointer<Void>, Pointer<Void>);
final MFGetContentProtectionSystemCLSID = DynamicLibrary.open('MFPlat.dll')
.lookupFunction<MFGetContentProtectionSystemCLSIDNative, MFGetContentProtectionSystemCLSIDDart>('MFGetContentProtectionSystemCLSID');
// guidProtectionSystemID : GUID* -> Pointer<Void>
// pclsid : GUID* out -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。{$mode objfpc}{$H+}
function MFGetContentProtectionSystemCLSID(
guidProtectionSystemID: PGUID; // GUID*
pclsid: PGUID // GUID* out
): Integer; stdcall;
external 'MFPlat.dll' name 'MFGetContentProtectionSystemCLSID';import Foreign
import Foreign.C.Types
import Foreign.C.String
foreign import stdcall safe "MFGetContentProtectionSystemCLSID"
c_MFGetContentProtectionSystemCLSID :: Ptr () -> Ptr () -> IO Int32
-- guidProtectionSystemID : GUID* -> Ptr ()
-- pclsid : GUID* out -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。open Ctypes
open Foreign
let mfgetcontentprotectionsystemclsid =
foreign "MFGetContentProtectionSystemCLSID"
((ptr void) @-> (ptr void) @-> returning int32_t)
(* guidProtectionSystemID : GUID* -> (ptr void) *)
(* pclsid : GUID* out -> (ptr void) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)(cffi:define-foreign-library mfplat (t "MFPlat.dll"))
(cffi:use-foreign-library mfplat)
(cffi:defcfun ("MFGetContentProtectionSystemCLSID" mfget-content-protection-system-clsid :convention :stdcall) :int32
(guid-protection-system-id :pointer) ; GUID*
(pclsid :pointer)) ; GUID* out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。use Win32::API;
my $MFGetContentProtectionSystemCLSID = Win32::API::More->new('MFPlat',
'int MFGetContentProtectionSystemCLSID(LPVOID guidProtectionSystemID, LPVOID pclsid)');
# my $ret = $MFGetContentProtectionSystemCLSID->Call($guidProtectionSystemID, $pclsid);
# guidProtectionSystemID : GUID* -> LPVOID
# pclsid : GUID* out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。