IT++ Logo
ittypes.h
Go to the documentation of this file.
00001 
00029 #ifndef ITTYPES_H
00030 #define ITTYPES_H
00031 
00033 
00034 // Fixed size integer types for MSVC++
00035 #if defined(_MSC_VER)
00036 typedef signed char int8_t;
00037 typedef unsigned char uint8_t;
00038 typedef signed short int16_t;
00039 typedef unsigned short uint16_t;
00040 typedef signed int int32_t;
00041 typedef unsigned int uint32_t;
00042 typedef signed __int64 int64_t;
00043 typedef unsigned __int64 uint64_t;
00044 #else
00045 // Assume that inttypes.h header file is available everywhere
00046 #  include <inttypes.h>
00047 #endif // defined(_MSC_VER)
00048 
00050 
00051 #endif // ITTYPES_H
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
SourceForge Logo

Generated on Sat Jul 9 2011 15:21:30 for IT++ by Doxygen 1.7.4