Hello,
I did the migration of my application from vc++ 6.0 to vc++ 2013 version,after migration i got some errors in my code.
error c2146:syntax error:missing ';' before identifier 'recordsets'
error c4430:missing type specifier - int assumed.Note c++ does not support default-int
The error was in the customimports.tlh file.
__declspec(property(get=Getaudi_job))
JOBTools::IAudiJobExecutionPtr audi_job;
__declspec(property(get=Getcola_msg))
COLATools::ICOLAMsgPtr cola_msg;
__declspec(property(get=Getrecordsets))
_RecordsetsPtr recordsets; //this is were both errors are indicating.
__declspec(property(get=GetcurrentSubRecords,put=PutcurrentSubRecords))
_bstr_t currentSubRecords;
Thanks, Suji