Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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