#define global IID_IBaseVideoMixer "{61DED640-E912-11CE-A099-00AA00479A58}"
#usecom global IBaseVideoMixer IID_IBaseVideoMixer "{}"
#comfunc global IBaseVideoMixer_SetLeadPin 3 int
#comfunc global IBaseVideoMixer_GetLeadPin 4 var
#comfunc global IBaseVideoMixer_GetInputPinCount 5 var
#comfunc global IBaseVideoMixer_IsUsingClock 6 var
#comfunc global IBaseVideoMixer_SetUsingClock 7 int
#comfunc global IBaseVideoMixer_GetClockPeriod 8 var
#comfunc global IBaseVideoMixer_SetClockPeriod 9 int
; ※数字は vtbl インデックス(0始まり)。0/1/2 は IUnknown(QueryInterface/AddRef/Release)。
; ※このインターフェースは直接 CoCreateInstance するクラスIDが無いため "{}"(他メソッド/アクティベーションで取得)。
; ※出力/バッファ引数は var(変数直渡し)。varptr 方式にも切替可。#define global IID_IBaseVideoMixer "{61DED640-E912-11CE-A099-00AA00479A58}"
#usecom global IBaseVideoMixer IID_IBaseVideoMixer "{}"
#comfunc global IBaseVideoMixer_SetLeadPin 3 int
#comfunc global IBaseVideoMixer_GetLeadPin 4 sptr
#comfunc global IBaseVideoMixer_GetInputPinCount 5 sptr
#comfunc global IBaseVideoMixer_IsUsingClock 6 sptr
#comfunc global IBaseVideoMixer_SetUsingClock 7 int
#comfunc global IBaseVideoMixer_GetClockPeriod 8 sptr
#comfunc global IBaseVideoMixer_SetClockPeriod 9 int
; ※数字は vtbl インデックス(0始まり)。0/1/2 は IUnknown(QueryInterface/AddRef/Release)。
; ※このインターフェースは直接 CoCreateInstance するクラスIDが無いため "{}"(他メソッド/アクティベーションで取得)。
; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。