1 #ifndef _PFONTS_H
2 #define _PFONTS_H
3 
4 /* cp437_to_unicode gives lookup for these - with some few exceptions TODO*/
5 extern unsigned char plFont44[256][2];
6 extern unsigned char plFont88[256][8];
7 extern unsigned char plFont816[256][16];
8 
9 struct FontData_8x16_t
10 {
11 	uint16_t codepoint;
12 	uint8_t data[16];
13 };
14 
15 struct FontData_8x8_t
16 {
17 	uint16_t codepoint;
18 	uint8_t data[16];
19 };
20 
21 extern const struct FontData_8x8_t  plFont_8x8_latin1_addons [41];
22 extern const struct FontData_8x16_t plFont_8x16_latin1_addons[41];
23 
24 #endif
25