mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
18 lines
319 B
C++
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
|