File:  [RetroPC.NET] / np2 / font / font.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Fri Oct 17 02:58:31 2003 JST (22 years ago) by yui
Branches: mie
CVS tags: start, rel_036, VER_0_71, VER_0_70
Neko Project II


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


#ifdef __cplusplus
extern "C" {
#endif

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

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

#ifdef __cplusplus
}
#endif


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