summaryrefslogtreecommitdiffstats
path: root/lib/rbcodec/codecs/libgme/gme.h
blob: d6803704ce60dd84e670d3ebe61970f031605dae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* 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