File:  [ELWIX - Embedded LightWeight unIX -] / elwix / tools / oldlzma / SRC / Common / Types.h
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue May 14 09:04:51 2013 UTC (11 years, 2 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

// Common/Types.h

#ifndef __COMMON_TYPES_H
#define __COMMON_TYPES_H

typedef unsigned char Byte;
typedef short Int16;
typedef unsigned short UInt16;
typedef int Int32;
typedef unsigned int UInt32;
#ifdef _MSC_VER
typedef __int64 Int64;
typedef unsigned __int64 UInt64;
#else

typedef long long int Int64;
typedef unsigned long long int UInt64;
#endif


#endif


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