mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 11:55:36 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63607 954022d7-b5bf-4e40-9824-e11837661b57
14 lines
465 B
C++
14 lines
465 B
C++
#ifndef _BUILD_FONT_CONVERTER_H
|
|
#define _BUILD_FONT_CONVERTER_H
|
|
|
|
#include <string>
|
|
|
|
class CFontConverter
|
|
{
|
|
public:
|
|
bool ToOTF(std::wstring sFontIn, std::wstring sFontOut, unsigned int* pSymbols, int nCount, std::wstring sName, long nFlag);
|
|
bool ToOTF2(std::wstring sFontIn, unsigned int* pSymbols, int nCount, std::wstring sName, long nFlag, long lFaceIndex, unsigned char*& pDstData, int& nDstLen);
|
|
};
|
|
|
|
#endif /* _BUILD_FONT_CONVERTER_H */
|