btIntDefines.h 405 B

12345678910111213141516171819
  1. #ifndef BT_INT_DEFINES_H
  2. #define BT_INT_DEFINES_H
  3. #ifdef __GNUC__
  4. #include <stdint.h>
  5. #elif defined(_MSC_VER)
  6. typedef __int32 int32_t;
  7. typedef __int64 int64_t;
  8. typedef unsigned __int32 uint32_t;
  9. typedef unsigned __int64 uint64_t;
  10. #else
  11. typedef int int32_t;
  12. typedef long long int int64_t;
  13. typedef unsigned int uint32_t;
  14. typedef unsigned long long int uint64_t;
  15. #endif
  16. #endif //BT_INT_DEFINES_H