f40bfc9267
Change-Id: Id7f4717d51ed02d67cb9f9cb3c0ada4a81843f97 Reviewed-on: http://gerrit.rockbox.org/137 Reviewed-by: Nils Wallménius <nils@rockbox.org> Tested-by: Nils Wallménius <nils@rockbox.org>
18 lines
316 B
C
18 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
|