mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-12 23:25:51 +00:00
This removes SystemString, SystemChar, etc. All filepaths and log strings are assumed to be UTF-8, with conversions to UTF-16 for Windows APIs as appropriate. Updates amuse, athena, boo, kabufua and nod
23 lines
329 B
C++
23 lines
329 B
C++
#pragma once
|
|
|
|
#ifndef _WIN32
|
|
#include <cstdlib>
|
|
#include <unistd.h>
|
|
#include <sys/stat.h>
|
|
#else
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
#define WIN32_LEAN_AND_MEAN 1
|
|
#endif
|
|
#ifndef NOMINMAX
|
|
#define NOMINMAX
|
|
#endif
|
|
#endif
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <cstring>
|
|
#include <algorithm>
|
|
|
|
namespace hecl {
|
|
|
|
} // namespace hecl
|