#usecom / #comfunc によるHSPのCOM呼び出し定義。数字は vtbl インデックス(0始まり)。クラスIDが無い場合 #usecom の末尾は "{}"、ある場合は "{CLSID}"。
出力引数:
#define global IID_IITPropList "{1F403BB1-9997-11D0-A850-00AA006C7D01}"
#usecom global IITPropList IID_IITPropList "{}"
#comfunc global IITPropList_Set 9 int,wstr,int
#comfunc global IITPropList_Set 10 int,sptr,int,int
#comfunc global IITPropList_Set 11 int,int,int
#comfunc global IITPropList_Add 12 var
#comfunc global IITPropList_Get 13 int,var
#comfunc global IITPropList_Clear 14
#comfunc global IITPropList_SetPersist 15 int
#comfunc global IITPropList_SetPersist 16 int,int
#comfunc global IITPropList_GetFirst 17 var
#comfunc global IITPropList_GetNext 18 var
#comfunc global IITPropList_GetPropCount 19 var
#comfunc global IITPropList_SaveHeader 20 sptr,int
#comfunc global IITPropList_SaveData 21 sptr,int,sptr,int
#comfunc global IITPropList_GetHeaderSize 22 var
#comfunc global IITPropList_GetDataSize 23 sptr,int,var
#comfunc global IITPropList_SaveDataToStream 24 sptr,int,sptr
#comfunc global IITPropList_LoadFromMem 25 sptr,int
#comfunc global IITPropList_SaveToMem 26 sptr,int
; ※数字は vtbl インデックス(0始まり)。0/1/2 は IUnknown(QueryInterface/AddRef/Release)。
; ※このインターフェースは直接 CoCreateInstance するクラスIDが無いため "{}"(他メソッド/アクティベーションで取得)。
; ※出力/バッファ引数は var(変数直渡し)。varptr 方式にも切替可。
; ※ハンドル/void*等の不透明ポインタは IronHSP では intptr 指定が可能。#define global IID_IITPropList "{1F403BB1-9997-11D0-A850-00AA006C7D01}"
#usecom global IITPropList IID_IITPropList "{}"
#comfunc global IITPropList_Set 9 int,wstr,int
#comfunc global IITPropList_Set 10 int,sptr,int,int
#comfunc global IITPropList_Set 11 int,int,int
#comfunc global IITPropList_Add 12 sptr
#comfunc global IITPropList_Get 13 int,sptr
#comfunc global IITPropList_Clear 14
#comfunc global IITPropList_SetPersist 15 int
#comfunc global IITPropList_SetPersist 16 int,int
#comfunc global IITPropList_GetFirst 17 sptr
#comfunc global IITPropList_GetNext 18 sptr
#comfunc global IITPropList_GetPropCount 19 sptr
#comfunc global IITPropList_SaveHeader 20 sptr,int
#comfunc global IITPropList_SaveData 21 sptr,int,sptr,int
#comfunc global IITPropList_GetHeaderSize 22 sptr
#comfunc global IITPropList_GetDataSize 23 sptr,int,sptr
#comfunc global IITPropList_SaveDataToStream 24 sptr,int,sptr
#comfunc global IITPropList_LoadFromMem 25 sptr,int
#comfunc global IITPropList_SaveToMem 26 sptr,int
; ※数字は vtbl インデックス(0始まり)。0/1/2 は IUnknown(QueryInterface/AddRef/Release)。
; ※このインターフェースは直接 CoCreateInstance するクラスIDが無いため "{}"(他メソッド/アクティベーションで取得)。
; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
; ※ハンドル/void*等の不透明ポインタは IronHSP では intptr 指定が可能。