#usecom / #comfunc によるHSPのCOM呼び出し定義。数字は vtbl インデックス(0始まり)。クラスIDが無い場合 #usecom の末尾は "{}"、ある場合は "{CLSID}"。
出力引数:
#define global IID_IISDB_NBIT "{1B1863EF-08F1-40B7-A559-3B1EFF8CAFA6}"
#usecom global IISDB_NBIT IID_IISDB_NBIT "{}"
#comfunc global IISDB_NBIT_Initialize 3 sptr,sptr
#comfunc global IISDB_NBIT_GetVersionNumber 4 var
#comfunc global IISDB_NBIT_GetOriginalNetworkId 5 var
#comfunc global IISDB_NBIT_GetCountOfRecords 6 var
#comfunc global IISDB_NBIT_GetRecordInformationId 7 int,var
#comfunc global IISDB_NBIT_GetRecordInformationType 8 int,var
#comfunc global IISDB_NBIT_GetRecordDescriptionBodyLocation 9 int,var
#comfunc global IISDB_NBIT_GetRecordMessageSectionNumber 10 int,var
#comfunc global IISDB_NBIT_GetRecordUserDefined 11 int,var
#comfunc global IISDB_NBIT_GetRecordNumberOfKeys 12 int,var
#comfunc global IISDB_NBIT_GetRecordKeys 13 int,var
#comfunc global IISDB_NBIT_GetRecordCountOfDescriptors 14 int,var
#comfunc global IISDB_NBIT_GetRecordDescriptorByIndex 15 int,int,sptr
#comfunc global IISDB_NBIT_GetRecordDescriptorByTag 16 int,int,var,sptr
#comfunc global IISDB_NBIT_GetVersionHash 17 var
; ※数字は vtbl インデックス(0始まり)。0/1/2 は IUnknown(QueryInterface/AddRef/Release)。
; ※このインターフェースは直接 CoCreateInstance するクラスIDが無いため "{}"(他メソッド/アクティベーションで取得)。
; ※出力/バッファ引数は var(変数直渡し)。varptr 方式にも切替可。
; ※ハンドル/void*等の不透明ポインタは IronHSP では intptr 指定が可能。#define global IID_IISDB_NBIT "{1B1863EF-08F1-40B7-A559-3B1EFF8CAFA6}"
#usecom global IISDB_NBIT IID_IISDB_NBIT "{}"
#comfunc global IISDB_NBIT_Initialize 3 sptr,sptr
#comfunc global IISDB_NBIT_GetVersionNumber 4 sptr
#comfunc global IISDB_NBIT_GetOriginalNetworkId 5 sptr
#comfunc global IISDB_NBIT_GetCountOfRecords 6 sptr
#comfunc global IISDB_NBIT_GetRecordInformationId 7 int,sptr
#comfunc global IISDB_NBIT_GetRecordInformationType 8 int,sptr
#comfunc global IISDB_NBIT_GetRecordDescriptionBodyLocation 9 int,sptr
#comfunc global IISDB_NBIT_GetRecordMessageSectionNumber 10 int,sptr
#comfunc global IISDB_NBIT_GetRecordUserDefined 11 int,sptr
#comfunc global IISDB_NBIT_GetRecordNumberOfKeys 12 int,sptr
#comfunc global IISDB_NBIT_GetRecordKeys 13 int,sptr
#comfunc global IISDB_NBIT_GetRecordCountOfDescriptors 14 int,sptr
#comfunc global IISDB_NBIT_GetRecordDescriptorByIndex 15 int,int,sptr
#comfunc global IISDB_NBIT_GetRecordDescriptorByTag 16 int,int,sptr,sptr
#comfunc global IISDB_NBIT_GetVersionHash 17 sptr
; ※数字は vtbl インデックス(0始まり)。0/1/2 は IUnknown(QueryInterface/AddRef/Release)。
; ※このインターフェースは直接 CoCreateInstance するクラスIDが無いため "{}"(他メソッド/アクティベーションで取得)。
; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
; ※ハンドル/void*等の不透明ポインタは IronHSP では intptr 指定が可能。