Submit initial patch from FS#12176. Adds support for several new game music formats...
[kugel-rb.git] / apps / codecs / libgme / msxtypes.h
blob6224e0760c46f964cdca86d70a909c409bae0dca
1 #ifndef MSX_TYPES
2 #define MSX_TYPES
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
9 #ifdef __GNUC__
10 #define __int64 long long
11 #endif
13 #ifdef _WIN32
14 #define DIR_SEPARATOR "\\"
15 #else
16 #define DIR_SEPARATOR "/"
17 #endif
19 /* So far, only support for MSVC types
21 typedef unsigned char UInt8;
22 #ifndef __CARBON__
23 typedef unsigned short UInt16;
24 typedef unsigned int UInt32;
25 typedef unsigned __int64 UInt64;
26 #endif
27 typedef signed char Int8;
28 typedef signed short Int16;
29 typedef signed int Int32;
31 #ifdef __cplusplus
33 #endif
36 #endif