2020-11-10 15:26:38 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
2020-11-12 22:22:33 +01:00
|
|
|
#include <cstddef>
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2021-02-10 18:17:09 +01:00
|
|
|
#include <hex/helpers/lang.hpp>
|
2021-04-20 21:46:48 +02:00
|
|
|
#include <hex/helpers/logger.hpp>
|
2021-02-10 18:17:09 +01:00
|
|
|
using namespace hex::lang_literals;
|
|
|
|
|
2020-11-10 15:26:38 +01:00
|
|
|
using u8 = std::uint8_t;
|
|
|
|
using u16 = std::uint16_t;
|
|
|
|
using u32 = std::uint32_t;
|
|
|
|
using u64 = std::uint64_t;
|
|
|
|
using u128 = __uint128_t;
|
|
|
|
|
2020-11-10 16:24:48 +01:00
|
|
|
using s8 = std::int8_t;
|
|
|
|
using s16 = std::int16_t;
|
|
|
|
using s32 = std::int32_t;
|
|
|
|
using s64 = std::int64_t;
|
2020-11-10 15:26:38 +01:00
|
|
|
using s128 = __int128_t;
|
|
|
|
|
2020-12-21 12:38:30 +01:00
|
|
|
#ifdef OS_WINDOWS
|
2020-11-21 14:39:16 +01:00
|
|
|
#define MAGIC_PATH_SEPARATOR ";"
|
|
|
|
#else
|
|
|
|
#define MAGIC_PATH_SEPARATOR ":"
|
|
|
|
#endif
|