Files
core/DesktopEditor/fontengine/FontConverter.h
Oleg.Korshul d896f09fd4 полная реализация FontConverter
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63607 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:16:33 +03:00

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 */