diff options
author | Tobias Grimm <tobias@e-tobi.loc> | 2008-12-02 21:00:33 +0100 |
---|---|---|
committer | Tobias Grimm <tobias@e-tobi.loc> | 2008-12-02 21:00:33 +0100 |
commit | b451fdb5a36c0f749d63d53165cdf4e84a8f476a (patch) | |
tree | aa3b6548ea52ef133028098c8fbaebbe47ed8a5d /txtfont.h | |
download | vdr-plugin-osdteletext-b451fdb5a36c0f749d63d53165cdf4e84a8f476a.tar.gz vdr-plugin-osdteletext-b451fdb5a36c0f749d63d53165cdf4e84a8f476a.tar.bz2 |
Initial commit of version 0.5.1v0.5.1release/v0.5.1
Diffstat (limited to 'txtfont.h')
-rw-r--r-- | txtfont.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/txtfont.h b/txtfont.h new file mode 100644 index 0000000..c2b73f4 --- /dev/null +++ b/txtfont.h @@ -0,0 +1,14 @@ +#ifndef __TXTFONT_H +#define __TXTFONT_H + +#include "txtrender.h" + +unsigned int* GetFontChar(cTeletextChar c, unsigned int *buffer); +// Get a character bitmap for character/charset +// Also handle double width/height partial characters +// buffer must be an unsigned int[10] buffer, that *may* be used +// to store the character - a different pointer may be returned too. +// returns NULL if undefined character + + +#endif |