summaryrefslogtreecommitdiff
path: root/lib/rbcodec/codecs/libgme/emutypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/codecs/libgme/emutypes.h')
-rw-r--r--lib/rbcodec/codecs/libgme/emutypes.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/rbcodec/codecs/libgme/emutypes.h b/lib/rbcodec/codecs/libgme/emutypes.h
new file mode 100644
index 0000000000..bc523db072
--- /dev/null
+++ b/lib/rbcodec/codecs/libgme/emutypes.h
@@ -0,0 +1,41 @@
1#ifndef _EMUTYPES_H_
2#define _EMUTYPES_H_
3
4#if defined(_MSC_VER)
5#define INLINE __forceinline
6#elif defined(__GNUC__)
7#define INLINE __inline__
8#elif defined(_MWERKS_)
9#define INLINE inline
10#else
11#define INLINE
12#endif
13
14#if defined(EMU_DLL_IMPORTS)
15#define EMU2149_DLL_IMPORTS
16#define EMU2212_DLL_IMPORTS
17#define EMU2413_DLL_IMPORTS
18#define EMU8950_DLL_IMPORTS
19#define EMU76489_DLL_IMPORTS
20#endif
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26typedef unsigned int e_uint;
27typedef signed int e_int;
28
29typedef unsigned char e_uint8 ;
30typedef signed char e_int8 ;
31
32typedef unsigned short e_uint16 ;
33typedef signed short e_int16 ;
34
35typedef unsigned int e_uint32 ;
36typedef signed int e_int32 ;
37
38#ifdef __cplusplus
39}
40#endif
41#endif