Types.hpp 336 B

1234567891011121314151617
  1. #ifndef __DARKRL__TYPES_HPP__
  2. #define __DARKRL__TYPES_HPP__
  3. #include <stdint.h>
  4. typedef int8_t int8;
  5. typedef uint8_t uint8;
  6. typedef int16_t int16;
  7. typedef uint16_t uint16;
  8. typedef int32_t int32;
  9. typedef uint32_t uint32;
  10. typedef int64_t int64;
  11. typedef uint64_t uint64;
  12. typedef unsigned int uint;
  13. #endif