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)
36typedef signed char int8_t;
37typedef unsigned char uint8_t;
38typedef signed short int16_t;
39typedef unsigned short uint16_t;
40typedef signed int int32_t;
41typedef unsigned int uint32_t;
42typedef signed __int64 int64_t;
43typedef 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

Generated on Tue Mar 26 2024 19:08:31 for IT++ by Doxygen 1.9.8