]> git.vomp.tv Git - vompclient.git/blob - bogl.h
More compiler warning fixes
[vompclient.git] / bogl.h
1 #ifndef BOGL_H
2 #define BOGL_H
3
4 /*
5  * This header file is here for font .c files that are created with the
6  * bdftobogl utility that comes with bogl.
7  */
8
9 typedef struct bogl_font {
10   char *name;     /* Font name. */
11   int height;     /* Height in pixels. */
12   int spacing;     /* Vertical spacing in pixels. */
13   unsigned long *content;   /* 32-bit right-padded bitmap array. */
14   short *offset;      /* 256 offsets into content. */
15   unsigned char *width;   /* 256 character widths. */
16 } osd_font_t;
17
18 #endif /* BOGL_H */