mirror of
https://github.com/libretro/RACE.git
synced 2024-11-23 00:49:43 +00:00
26 lines
737 B
C
26 lines
737 B
C
/*---------------------------------------------------------------------------
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version. See also the license.txt file for
|
|
* additional informations.
|
|
*---------------------------------------------------------------------------
|
|
*/
|
|
|
|
/* ngpBios.h: interface for the ngpBios class. */
|
|
|
|
#ifndef AFX_NGPBIOS_H
|
|
#define AFX_NGPBIOS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void ngpBiosSYSFONTSET(unsigned char *pt, char i, char j);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* !defined(AFX_NGPBIOS_H) */
|