ultimatepp/uppsrc/plugin/FT_fontsys/FT_fontsys.h
cxl 395afe4e52 plugin/FT_fontsys, plugin/DroidFonts
git-svn-id: svn://ultimatepp.org/upp/trunk@6356 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2013-09-16 09:42:23 +00:00

18 lines
333 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);
END_UPP_NAMESPACE
#endif