OSDN Git Service

[VM][General] Merge Upstream 2017-12-15.
[csp-qt/common_source_project-fm7.git] / source / src / vm / fmgen / types.h
1 #if !defined(win32_types_h)
2 #define win32_types_h
3
4 //  \8cÅ\92è\92·\8c^\82Æ\82©
5 #ifndef uchar
6 typedef unsigned char uchar;
7 #endif
8 #ifndef ushort
9 typedef unsigned short ushort;
10 #endif
11 #ifndef uint
12 typedef unsigned int uint;
13 #endif
14 #ifndef ulong
15 typedef unsigned long ulong;
16 #endif
17
18 #ifndef uint8
19 typedef unsigned char uint8;
20 #endif
21 #ifndef uint16
22 typedef unsigned short uint16;
23 #endif
24 #ifndef uint32
25 typedef unsigned int  uint32;
26 #endif
27
28 #ifndef sint8
29 typedef signed char sint8;
30 #endif
31 #ifndef sint16
32 typedef signed short sint16;
33 #endif
34 #ifndef sint32
35 typedef signed int sint32;
36 #endif
37
38 #ifndef int8
39 typedef signed char int8;
40 #endif
41 #ifndef int16
42 typedef signed short int16;
43 #endif
44 #ifndef int32
45 typedef signed int int32;
46 #endif
47
48 #endif // win32_types_h