|
|
| version 1.1, 2003/10/16 17:58:31 | version 1.5, 2005/02/09 20:11:34 |
|---|---|
| Line 7 extern "C" { | Line 7 extern "C" { |
| #endif | #endif |
| #ifdef FONTMEMORYBIND | #ifdef FONTMEMORYBIND |
| #define font (mem + FONT_ADRS) | #define fontrom (mem + FONT_ADRS) |
| #else | #else |
| extern BYTE __font[0x84000]; | extern UINT8 __font[0x84000]; |
| #define font (__font) | #define fontrom (__font) |
| #endif | #endif |
| void font_init(void); | void font_initialize(void); |
| BYTE font_load(const char *filename, BOOL force); | UINT8 font_load(const OEMCHAR *filename, BOOL force); |
| #ifdef __cplusplus | #ifdef __cplusplus |
| } | } |