Win32 API 日本語リファレンス
ホームUI.Wpf › IMILBitmapEffectInteriorInputConnector

IMILBitmapEffectInteriorInputConnector

COM
IID20287e9e-86a2-4e15-953d-eb1438a5b842継承元IUnknown自前メソッド開始 vtbl3

公式ドキュメント

内部入力コネクターを定義するメソッドを公開します。

メソッド 1

vtbl = vtable インデックス(0始まり)。HSP等からCOMメソッドをインデックス指定で呼ぶ際に使用します。0〜2 は IUnknown。

vtbl 3 HRESULT GetInputConnector(IMILBitmapEffectInputConnector** pInputConnector)

内部コネクターに関連付けられた IMILBitmapEffectInputConnector を取得します。

pInputConnectorIMILBitmapEffectInputConnector**outIMILBitmapEffectInputConnector へのポインターを受け取るポインターです。

戻り値

型: HRESULT

このメソッドが成功した場合は S_OK を返します。それ以外の場合は HRESULT エラーコードを返します。

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

HSP用 COM定義

#usecom / #comfunc によるHSPのCOM呼び出し定義。数字は vtbl インデックス(0始まり)。クラスIDが無い場合 #usecom の末尾は "{}"、ある場合は "{CLSID}"

#define global IID_IMILBitmapEffectInteriorInputConnector "{20287E9E-86A2-4E15-953D-EB1438A5B842}"
#usecom global IMILBitmapEffectInteriorInputConnector IID_IMILBitmapEffectInteriorInputConnector "{}"
#comfunc global IMILBitmapEffectInteriorInputConnector_GetInputConnector  3 sptr
; ※数字は vtbl インデックス(0始まり)。0/1/2 は IUnknown(QueryInterface/AddRef/Release)。
; ※このインターフェースは直接 CoCreateInstance するクラスIDが無いため "{}"(他メソッド/アクティベーションで取得)。
; ※ハンドル/void*等の不透明ポインタは IronHSP では intptr 指定が可能。