summaryrefslogtreecommitdiff
path: root/lib/rbcodec/codecs/libgme/msxtypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/codecs/libgme/msxtypes.h')
-rw-r--r--lib/rbcodec/codecs/libgme/msxtypes.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/rbcodec/codecs/libgme/msxtypes.h b/lib/rbcodec/codecs/libgme/msxtypes.h
new file mode 100644
index 0000000000..6224e0760c
--- /dev/null
+++ b/lib/rbcodec/codecs/libgme/msxtypes.h
@@ -0,0 +1,36 @@
1#ifndef MSX_TYPES
2#define MSX_TYPES
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8
9#ifdef __GNUC__
10#define __int64 long long
11#endif
12
13#ifdef _WIN32
14#define DIR_SEPARATOR "\\"
15#else
16#define DIR_SEPARATOR "/"
17#endif
18
19/* So far, only support for MSVC types
20 */
21typedef unsigned char UInt8;
22#ifndef __CARBON__
23typedef unsigned short UInt16;
24typedef unsigned int UInt32;
25typedef unsigned __int64 UInt64;
26#endif
27typedef signed char Int8;
28typedef signed short Int16;
29typedef signed int Int32;
30
31#ifdef __cplusplus
32}
33#endif
34
35
36#endif