blob: 6224e0760c46f964cdca86d70a909c409bae0dca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#ifndef MSX_TYPES
#define MSX_TYPES
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __GNUC__
#define __int64 long long
#endif
#ifdef _WIN32
#define DIR_SEPARATOR "\\"
#else
#define DIR_SEPARATOR "/"
#endif
/* So far, only support for MSVC types
*/
typedef unsigned char UInt8;
#ifndef __CARBON__
typedef unsigned short UInt16;
typedef unsigned int UInt32;
typedef unsigned __int64 UInt64;
#endif
typedef signed char Int8;
typedef signed short Int16;
typedef signed int Int32;
#ifdef __cplusplus
}
#endif
#endif
|