[Base] Add FourCC type

- using fourcc_t = uint32_t
- make_fourcc() overloads
This commit is contained in:
Joel Linn
2021-05-06 15:58:09 +02:00
committed by Rick Gibbed
parent fbc31652e0
commit 9bb920b104
2 changed files with 29 additions and 0 deletions

View File

@@ -11,6 +11,14 @@
#define XENIA_BASE_BYTE_ORDER_H_
#include <cstdint>
#if defined __has_include
#if __has_include(<version>)
#include <version>
#endif
#endif
#if __cpp_lib_endian
#include <bit>
#endif
#include "xenia/base/assert.h"
#include "xenia/base/platform.h"