summaryrefslogtreecommitdiff
path: root/lib/rbcodec/codecs/libgme/gme.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/codecs/libgme/gme.h')
-rw-r--r--lib/rbcodec/codecs/libgme/gme.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/rbcodec/codecs/libgme/gme.h b/lib/rbcodec/codecs/libgme/gme.h
new file mode 100644
index 0000000000..d6803704ce
--- /dev/null
+++ b/lib/rbcodec/codecs/libgme/gme.h
@@ -0,0 +1,18 @@
1/* Game music emulator library C interface (also usable from C++) */
2
3/* Game_Music_Emu 0.5.2 */
4#ifndef GME_H
5#define GME_H
6
7#ifdef __cplusplus
8 extern "C" {
9#endif
10
11/* Error string returned by library functions, or NULL if no error (success) */
12typedef const char* gme_err_t;
13
14#ifdef __cplusplus
15 }
16#endif
17
18#endif