diff options
author | Kargatum <dowlandtop@yandex.com> | 2022-01-19 12:01:59 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-19 12:01:59 +0700 |
commit | 259b9133f68ef0d740fc871d59fab3d2791f33b4 (patch) | |
tree | 89da4d2a14ee203de3baff62e6c2d5b4b025bbfa /src/tools | |
parent | b5ab409614bf0d45e7a4f03c57b15edf113fe5f0 (diff) |
feat(Core/Common): add new helpers for time utility (#10207)
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/map_extractor/loadlib/loadlib.h | 30 |
1 files changed, 3 insertions, 27 deletions
diff --git a/src/tools/map_extractor/loadlib/loadlib.h b/src/tools/map_extractor/loadlib/loadlib.h index 2502a75cf8..f8259d9acc 100644 --- a/src/tools/map_extractor/loadlib/loadlib.h +++ b/src/tools/map_extractor/loadlib/loadlib.h @@ -18,35 +18,10 @@ #ifndef LOAD_LIB_H #define LOAD_LIB_H +#include "Define.h" #include <string> -#ifdef _WIN32 -typedef __int64 int64; -typedef __int32 int32; -typedef __int16 int16; -typedef __int8 int8; -typedef unsigned __int64 uint64; -typedef unsigned __int32 uint32; -typedef unsigned __int16 uint16; -typedef unsigned __int8 uint8; -#else -#include <cstdint> -#ifndef uint64_t -#ifdef __linux__ -#include <linux/types.h> -#endif -#endif -typedef int64_t int64; -typedef int32_t int32; -typedef int16_t int16; -typedef int8_t int8; -typedef uint64_t uint64; -typedef uint32_t uint32; -typedef uint16_t uint16; -typedef uint8_t uint8; -#endif - -#define FILE_FORMAT_VERSION 18 +constexpr auto FILE_FORMAT_VERSION = 18; union u_map_fcc { @@ -83,4 +58,5 @@ public: bool loadFile(std::string const& filename, bool log = true); virtual void free(); }; + #endif |