font.h 521 B

12345678910111213141516171819
  1. #ifndef FONT_H
  2. #define FONT_H
  3. #include "fontsize.h" /* the #defines from font?.xbm */
  4. #if font1_width != font2_width || font1_height != font2_height
  5. #error different font sizes.
  6. #endif
  7. extern unsigned char font1_bits[];
  8. extern unsigned char font2_bits[];
  9. extern unsigned char font3_bits[];
  10. extern unsigned char font4_bits[];
  11. #define font_width font1_width
  12. #define font_height font1_height
  13. #define CW (font_width/32) /* pixel width of a character */
  14. #define CH (font_height/8) /* pixel height of a character */
  15. #endif