ultimatepp/uppsrc/plugin/FT_fontsys/FT_fontsys.h
cxl 8ebdcbb0d5 uppsrc: NAMESPACE_UPP / END_UPP_NAMESPACE removed
git-svn-id: svn://ultimatepp.org/upp/trunk@10186 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2016-08-26 17:15:30 +00:00

18 lines
319 B
C++

#ifndef _plugin_FT_fontsys_FT_fontsys_h_
#define _plugin_FT_fontsys_FT_fontsys_h_
#include <Draw/Draw.h>
namespace Upp {
enum FtStyle {
FtBOLD = 1,
FtITALIC = 2
};
void SetFileFont(int face, const char *path, dword style = 0);
void SetMemoryFont(int face, const byte *data, int size, dword style = 0);
}
#endif