2008-12-03 05:40:16 +00:00
|
|
|
#ifndef FONT_H
|
|
|
|
#define FONT_H
|
2008-12-05 02:53:09 +00:00
|
|
|
|
2008-12-05 14:17:04 +00:00
|
|
|
#include "../compat/pgmspace.h"
|
2008-12-03 05:40:16 +00:00
|
|
|
|
|
|
|
typedef struct{
|
|
|
|
unsigned char fontHeight;
|
|
|
|
const unsigned int* fontIndex;
|
|
|
|
const unsigned char* fontData;
|
|
|
|
unsigned char glyph_beg;
|
|
|
|
unsigned char glyph_end;
|
|
|
|
unsigned char glyph_def;
|
|
|
|
unsigned char storebytes;
|
|
|
|
} font;
|
|
|
|
|
|
|
|
#endif //FONT_H
|