Refactoring and fix bugs

This commit is contained in:
Green
2025-01-11 01:18:41 +03:00
parent 4d15b5c19d
commit aea8b7873c
72 changed files with 535 additions and 350 deletions

View File

@ -4,7 +4,7 @@
int main()
{
CHWPFile oFile(L"C:/ONLYOFFICE/Files/hwp/example.hwp");
CHWPFile oFile(L"YOUR_PATH");
if (oFile.Open())
{
@ -21,5 +21,5 @@ int main()
NSDirectory::DeleteDirectory(wsTempDir);
NSDirectory::CreateDirectory(wsTempDir);
oFile.SetTempDirectory(wsTempDir);
oFile.ConvertToOOXML(L"temp.docx");
oFile.ConvertToOOXML(L"YOUR_PATH.docx");
}