请问3.7版本没有GetReportDataByIndex()这个函数了吗?遍历整个版块该用哪个函数?
GetReportData()要传入证券代码,效率恐有点低
//取指定品种的动态及时报表
virtual REPORT_STRUCT * GetReportData(char * szLabel, WORD wMarket) = 0;
//获取指定市场下的品种数量
virtual DWORD GetReportCount(WORD wMarket) = 0;
//获取指定市场下基于0索引的品种代码
//wMarket 输入参数, 指定市场
//dwIndex 输入参数, 基于0索引的序号, 可以用GetReportCount函数获取
//szCode 输出参数, 品种代码数组, 该数组空间不能小于10字节
virtual BOOL GetReportData(WORD wMarket, DWORD dwIndex, char * szCode) = 0;
GetReportDataByIndex 这个是VBA提供的函数,C++中没有的