Committer:
Midimetric
Date:
Sun Feb 06 13:30:28 2011 +0000
Revision:
5:1c78c0b4f513
Parent:
2:d6e572640dcc

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Midimetric 0:601fd83c75e0 1 #ifndef FONT_H
Midimetric 0:601fd83c75e0 2 #define FONT_H
Midimetric 0:601fd83c75e0 3
Midimetric 0:601fd83c75e0 4 typedef struct {
Midimetric 2:d6e572640dcc 5 unsigned char cod; // unicode value
Midimetric 2:d6e572640dcc 6 unsigned char wid; // data width in pixels
Midimetric 2:d6e572640dcc 7 unsigned char hei; // data height in pixels (multiple of 8)
Midimetric 2:d6e572640dcc 8 unsigned char tlc; // form allows left top crening
Midimetric 2:d6e572640dcc 9 unsigned char trc; // form allows right top crening
Midimetric 2:d6e572640dcc 10 unsigned char blc; // form allows left bottom crening
Midimetric 2:d6e572640dcc 11 unsigned char brc; // form allows right bottom crening
Midimetric 0:601fd83c75e0 12 const char* bmp;
Midimetric 0:601fd83c75e0 13 } XGlyph;
Midimetric 0:601fd83c75e0 14
Midimetric 0:601fd83c75e0 15 #endif