Files
core/ASCOfficeXlsFile2/source/XlsXlsxConverter/ConvertXls2Xlsx.cpp
Elen.Subbotina b898a069ca XlsFile2
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63758 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:19:06 +03:00

18 lines
372 B
C++

#include "ConvertXls2Xlsx.h"
#include "XlsConverter.h"
#include "../../../Common/OfficeFileErrorDescription.h"
long ConvertXls2Xlsx(const std::wstring & srcFile, const std::wstring & dstPath, const ProgressCallback* pCallBack)
{
XlsConverter converter(srcFile, dstPath, pCallBack);
converter.convertDocument();
converter.write();
return 0;
}