bannertool/source/types.h
2017-02-17 23:47:03 -08:00

15 lines
207 B
C++

#ifndef TYPES_H
#define TYPES_H
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
#include <string>
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
#endif