home *** CD-ROM | disk | FTP | other *** search
-
- /* font.h */
-
- #ifndef ibarpatch_font_H
- #define ibarpatch_font_H
-
- typedef struct font_object font_object;
-
- font_object *font_open(void);
- void font_close(font_object *font);
-
- int font_text_width(const font_object *font, const char *text);
- int font_get_handle(font_object *font);
-
- #endif
-