openal-soft/common/albyte.h

18 lines
232 B
C
Raw Normal View History

#ifndef AL_BYTE_H
#define AL_BYTE_H
#include <cstddef>
#include <cstdint>
#include <limits>
#include <type_traits>
2020-12-05 05:57:18 -08:00
using uint = unsigned int;
namespace al {
using byte = unsigned char;
2019-06-11 22:29:39 -07:00
} // namespace al
#endif /* AL_BYTE_H */