diff options
author | Akira Akashi <rubenru09@aol.com> | 2021-08-22 12:29:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-22 12:29:30 +0100 |
commit | d08722a7381c4c05a40ee59bb6de556616e1dfc2 (patch) | |
tree | 820614fcaf4094759d90498156cafed87bedb881 /tools/nitrobanner/types.h | |
parent | bdcd439b89deee757fcad4d3ce72cdee97f5a080 (diff) | |
parent | 408cdd5611fbc4947545e747812dbbd86b36f3aa (diff) |
Merge pull request #457 from tgsm/nitrobanner
Add nitrobanner tool
Diffstat (limited to 'tools/nitrobanner/types.h')
-rw-r--r-- | tools/nitrobanner/types.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/nitrobanner/types.h b/tools/nitrobanner/types.h new file mode 100644 index 00000000..5776e62f --- /dev/null +++ b/tools/nitrobanner/types.h @@ -0,0 +1,15 @@ +#pragma once + +#include <cstdint> + +#if (__GNUC__ <= 7) && !defined _MSC_VER +#include <experimental/filesystem> +namespace filesystem = std::experimental::filesystem; +#else +#include <filesystem> +namespace filesystem = std::filesystem; +#endif + +using u8 = uint8_t; +using u16 = uint16_t; +using u32 = uint32_t; |