mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
13 lines
232 B
C++
13 lines
232 B
C++
#ifndef HTMLTOXHTML_H
|
|
#define HTMLTOXHTML_H
|
|
|
|
#include <string>
|
|
|
|
namespace HTML
|
|
{
|
|
std::wstring htmlToXhtml(std::string& sFileContent, bool bNeedConvert);
|
|
std::wstring mhtToXhtml(std::string& sFileContent);
|
|
}
|
|
|
|
#endif // HTMLTOXHTML_H
|