| 1234567891011121314151617 |
- #ifndef __DARKRL__TYPES_HPP__
- #define __DARKRL__TYPES_HPP__
- #include <stdint.h>
- typedef int8_t int8;
- typedef uint8_t uint8;
- typedef int16_t int16;
- typedef uint16_t uint16;
- typedef int32_t int32;
- typedef uint32_t uint32;
- typedef int64_t int64;
- typedef uint64_t uint64;
- typedef unsigned int uint;
- #endif
|