mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63758 954022d7-b5bf-4e40-9824-e11837661b57
18 lines
372 B
C++
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;
|
|
|
|
} |