File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 44#if defined(LIBLSL_FFI )
55// Skip any typedefs that might confuse a FFI header parser, e.g. cffi
66#elif defined(_MSC_VER ) && _MSC_VER < 1600
7- #if !defined(__STDC_CONSTANT_MACROS ) && !defined(BOOST_CSTDINT_HPP )
87typedef signed char int8_t ;
98typedef signed short int16_t ;
10- typedef unsigned short uint16_t ;
119typedef signed int int32_t ;
1210typedef signed long long int64_t ;
1311typedef unsigned int uint32_t ;
1412typedef unsigned long long uint64_t ;
15- #endif
1613#else
1714#include <stdint.h>
1815#endif
Original file line number Diff line number Diff line change 1717#include < boost/cstdint.hpp>
1818using lslboost::int8_t ;
1919using lslboost::int16_t ;
20+ using lslboost::uint16_t ;
2021using lslboost::int32_t ;
2122using lslboost::int64_t ;
2223using lslboost::uint8_t ;
2324using lslboost::uint16_t ;
25+ #ifndef LSL_C_H
2426using lslboost::uint32_t ;
27+ #endif
2528using lslboost::uint64_t ;
2629#define __func__ " An unknown function"
2730#endif
You can’t perform that action at this time.
0 commit comments