#usecom / #comfunc によるHSPのCOM呼び出し定義。数字は vtbl インデックス(0始まり)。クラスIDが無い場合 #usecom の末尾は "{}"、ある場合は "{CLSID}"。
出力引数:
#define global IID_IDvbLogicalChannel2Descriptor "{F69C3747-8A30-4980-998C-01FE7F0BA35A}"
#usecom global IDvbLogicalChannel2Descriptor IID_IDvbLogicalChannel2Descriptor "{}"
#comfunc global IDvbLogicalChannel2Descriptor_GetCountOfLists 9 var
#comfunc global IDvbLogicalChannel2Descriptor_GetListId 10 int,var
#comfunc global IDvbLogicalChannel2Descriptor_GetListNameW 11 int,int,var
#comfunc global IDvbLogicalChannel2Descriptor_GetListCountryCode 12 int,var
#comfunc global IDvbLogicalChannel2Descriptor_GetListCountOfRecords 13 int,var
#comfunc global IDvbLogicalChannel2Descriptor_GetListRecordServiceId 14 int,int,var
#comfunc global IDvbLogicalChannel2Descriptor_GetListRecordLogicalChannelNumber 15 int,int,var
#comfunc global IDvbLogicalChannel2Descriptor_GetListRecordLogicalChannelAndVisibility 16 int,int,var
; ※数字は vtbl インデックス(0始まり)。0/1/2 は IUnknown(QueryInterface/AddRef/Release)。
; ※このインターフェースは直接 CoCreateInstance するクラスIDが無いため "{}"(他メソッド/アクティベーションで取得)。
; ※出力/バッファ引数は var(変数直渡し)。varptr 方式にも切替可。#define global IID_IDvbLogicalChannel2Descriptor "{F69C3747-8A30-4980-998C-01FE7F0BA35A}"
#usecom global IDvbLogicalChannel2Descriptor IID_IDvbLogicalChannel2Descriptor "{}"
#comfunc global IDvbLogicalChannel2Descriptor_GetCountOfLists 9 sptr
#comfunc global IDvbLogicalChannel2Descriptor_GetListId 10 int,sptr
#comfunc global IDvbLogicalChannel2Descriptor_GetListNameW 11 int,int,sptr
#comfunc global IDvbLogicalChannel2Descriptor_GetListCountryCode 12 int,sptr
#comfunc global IDvbLogicalChannel2Descriptor_GetListCountOfRecords 13 int,sptr
#comfunc global IDvbLogicalChannel2Descriptor_GetListRecordServiceId 14 int,int,sptr
#comfunc global IDvbLogicalChannel2Descriptor_GetListRecordLogicalChannelNumber 15 int,int,sptr
#comfunc global IDvbLogicalChannel2Descriptor_GetListRecordLogicalChannelAndVisibility 16 int,int,sptr
; ※数字は vtbl インデックス(0始まり)。0/1/2 は IUnknown(QueryInterface/AddRef/Release)。
; ※このインターフェースは直接 CoCreateInstance するクラスIDが無いため "{}"(他メソッド/アクティベーションで取得)。
; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。