mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 01:11:43 +08:00
14 lines
281 B
C++
14 lines
281 B
C++
#include "../CEpubFile.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
CEpubFile Epub;
|
|
|
|
if (Epub.IsEbubFile(L"../../../Files/Harry Potter 1.epub"))
|
|
{
|
|
Epub.SetTempDirectory(L"Temp");
|
|
Epub.Convert(L"../../../Files/Harry Potter 1.epub", L"");
|
|
}
|
|
return 0;
|
|
}
|