Annotation of elwix/tools/oldlzma/SRC/Common/Types.h, revision 1.1.1.1

1.1       misho       1: // Common/Types.h
                      2: 
                      3: #ifndef __COMMON_TYPES_H
                      4: #define __COMMON_TYPES_H
                      5: 
                      6: typedef unsigned char Byte;
                      7: typedef short Int16;
                      8: typedef unsigned short UInt16;
                      9: typedef int Int32;
                     10: typedef unsigned int UInt32;
                     11: #ifdef _MSC_VER
                     12: typedef __int64 Int64;
                     13: typedef unsigned __int64 UInt64;
                     14: #else
                     15: typedef long long int Int64;
                     16: typedef unsigned long long int UInt64;
                     17: #endif
                     18: 
                     19: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>