File:  [RetroPC.NET] / np2 / font / font.h
Revision 1.2: download - view: text, annotated - select for diffs
Sat Nov 15 16:10:02 2003 JST (21 years, 11 months ago) by yui
Branches: MAIN
CVS tags: VER_0_74, VER_0_73, VER_0_72, HEAD
code collection... (T.Yui)


#define	FONTMEMORYBIND				// 520KB‚­‚炢ƒƒ‚ƒŠíœ(‚§‚Ą


#ifdef __cplusplus
extern "C" {
#endif

#ifdef FONTMEMORYBIND
#define	fontrom		(mem + FONT_ADRS)
#else
extern	BYTE	__font[0x84000];
#define	fontrom		(__font)
#endif

void font_init(void);
BYTE font_load(const char *filename, BOOL force);

#ifdef __cplusplus
}
#endif


RetroPC.NET-CVS <cvs@retropc.net>