52d07081e8d9201e9a10f1df96063926cc104f2e
[coreboot.git] / payloads / bayou / util / pbuilder / lzma / C / Common / Types.h
1 // Common/Types.h\r
2 \r
3 #ifndef __COMMON_TYPES_H\r
4 #define __COMMON_TYPES_H\r
5 \r
6 typedef unsigned char Byte;\r
7 typedef short Int16;\r
8 typedef unsigned short UInt16;\r
9 typedef int Int32;\r
10 typedef unsigned int UInt32;\r
11 #ifdef _MSC_VER\r
12 typedef __int64 Int64;\r
13 typedef unsigned __int64 UInt64;\r
14 #else\r
15 typedef long long int Int64;\r
16 typedef unsigned long long int UInt64;\r
17 #endif\r
18 \r
19 #endif\r