Revision:
0:601fd83c75e0
Child:
2:d6e572640dcc
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xfont.h	Wed Dec 29 09:53:24 2010 +0000
@@ -0,0 +1,15 @@
+#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
\ No newline at end of file