19 lines
316 B
C
19 lines
316 B
C
|
/* Game music emulator library C interface (also usable from C++) */
|
||
|
|
||
|
/* Game_Music_Emu 0.5.2 */
|
||
|
#ifndef GME_H
|
||
|
#define GME_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/* Error string returned by library functions, or NULL if no error (success) */
|
||
|
typedef const char* gme_err_t;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|