Hi everyone
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 C2143: syntax error:missing ';' before 'CustomImport::ICustomImportHelpers::Getrecordsets'
error C2433: '_RecordsetsPtr' : 'inline' not permitted on data declarations
This error was in customimport.tli file
inline _RecorfsetsPtr IcustomImportHelpers::Getrecordsets() { //both error indicates here
struct _Recordsets * _result = 0;
HRESULT _hr=get_recordsets(&_result);
if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
return _bstr_t(_result, false);
}
Please suggest me answers
thanks Ankush