 |
VectorNav C Library
|
1 #ifndef VNINT_H_INCLUDED
2 #define VNINT_H_INCLUDED
6 #pragma warning(disable : 4820)
7 #pragma warning(disable : 4255)
11 #if defined(_MSC_VER) && _MSC_VER <= 1500
12 typedef signed __int8 int8_t;
13 typedef signed __int16 int16_t;
14 typedef signed __int32 int32_t;
15 typedef signed __int64 int64_t;
16 typedef unsigned __int8 uint8_t;
17 typedef unsigned __int16 uint16_t;
18 typedef unsigned __int32 uint32_t;
19 typedef unsigned __int64 uint64_t;