vc源码编译问题,求助!!!!!
struct HistoryHeader{
int version; // 基础版本
char copyright[64]; // 版权信息
char symbol[12]; // 证券
int period; // 周期类型
int digits; // 小数位数
time_t timesign; // 基础报时的创建
time_t last_sync; // 同步时间
int unused[13]; // 将来应用
}MTHSTHEAD;
#pragma pack(push,1)
struct RateInfo
{
time_t ctm;
double open;
double low;
double high;
double close;
double vol;
}MTHST;
#pragma pack(pop)
MTHSTHEAD hsthead;
MTHST kline;
CArray<MTHST, MTHST > akline;
CFile file;
if( file.Open( _T("USDCHF1440.hst"), CFile::modeRead ) )
{
file.SeekToBegin();
file.Read( &hsthead, sizeof(MTHSTHEAD) );
while( sizeof(MTHST) == file.Read( &kline, sizeof(MTHST) ) )
{
akline.Add(kline);
}
file.Close();
}
这段代码老是编译不过去,哪位高手帮帮我,谢谢先!!!