home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / programs / patches / newbar / Source / NewBar / h / font < prev    next >
Encoding:
Text File  |  1998-07-22  |  286 b   |  16 lines

  1.  
  2. /* font.h */
  3.  
  4. #ifndef ibarpatch_font_H
  5. #define ibarpatch_font_H
  6.  
  7. typedef struct font_object font_object;
  8.  
  9. font_object *font_open(void);
  10. void font_close(font_object *font);
  11.  
  12. int font_text_width(const font_object *font, const char *text);
  13. int font_get_handle(font_object *font);
  14.  
  15. #endif
  16.