2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-12 23:25:51 +00:00
metaforce/hecl/include/hecl/SystemChar.hpp
Luke Street 9ca1a38171 Use UTF-8 exclusively internally
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
2021-06-30 14:20:45 -04:00

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