Win32 API 日本語リファレンス
ホームSystem.WinRT › ICorrelationVectorInformation

ICorrelationVectorInformation

COM
IID83c78b3c-d88b-4950-aa6e-22b8d22aabd3継承元IInspectable自前メソッド開始 vtbl6

メソッド 3

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

vtbl 6 HRESULT get_LastCorrelationVectorForThread(HSTRING* cv)
cvHSTRING*out現在のスレッドで最後に使用された相関ベクターの文字列を受け取る HSTRING へのポインタである。
vtbl 7 HRESULT get_NextCorrelationVectorForThread(HSTRING* cv)
cvHSTRING*out現在のスレッドで次に使用される相関ベクターの文字列を受け取る HSTRING へのポインタである。
vtbl 8 HRESULT put_NextCorrelationVectorForThread(HSTRING cv)
cvHSTRINGin現在のスレッドで次に使用する相関ベクターの文字列を指定する。

HSP用 COM定義

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

#define global IID_ICorrelationVectorInformation "{83C78B3C-D88B-4950-AA6E-22B8D22AABD3}"
#usecom global ICorrelationVectorInformation IID_ICorrelationVectorInformation "{}"
#comfunc global ICorrelationVectorInformation_get_LastCorrelationVectorForThread  6 sptr
#comfunc global ICorrelationVectorInformation_get_NextCorrelationVectorForThread  7 sptr
#comfunc global ICorrelationVectorInformation_put_NextCorrelationVectorForThread  8 sptr
; ※数字は vtbl インデックス(0始まり)。0/1/2 は IUnknown(QueryInterface/AddRef/Release)。
; ※このインターフェースは直接 CoCreateInstance するクラスIDが無いため "{}"(他メソッド/アクティベーションで取得)。
; ※ハンドル/void*等の不透明ポインタは IronHSP では intptr 指定が可能。