xfont.h

Committer:
Midimetric
Date:
2010-12-29
Revision:
0:601fd83c75e0
Child:
2:d6e572640dcc

File content as of revision 0:601fd83c75e0:

#ifndef FONT_H
#define FONT_H

typedef struct {
    unsigned int    cod; // unicode value
    int             wid; // data width in pixels
    int             hei; // data height in pixels (multiple of 8)
    int             tlc; // form allows left top crening
    int             trc; // form allows right top crening
    int             blc; // form allows left bottom crening
    int             brc; // form allows right bottom crening
    const char*     bmp;
} XGlyph;

#endif