IT++ Logo
ittypes.h
Go to the documentation of this file.
1 
29 #ifndef ITTYPES_H
30 #define ITTYPES_H
31 
33 
34 // Fixed size integer types for MSVC++
35 #if defined(_MSC_VER)
36 typedef signed char int8_t;
37 typedef unsigned char uint8_t;
38 typedef signed short int16_t;
39 typedef unsigned short uint16_t;
40 typedef signed int int32_t;
41 typedef unsigned int uint32_t;
42 typedef signed __int64 int64_t;
43 typedef unsigned __int64 uint64_t;
44 #else
45 // Assume that inttypes.h header file is available everywhere
46 # include <inttypes.h>
47 #endif // defined(_MSC_VER)
48 
50 
51 #endif // ITTYPES_H
SourceForge Logo

Generated on Sat Jul 6 2013 10:54:20 for IT++ by Doxygen 1.8.2