1 2 3 4 5 6 7 8 9 10
#pragma once #include "win_pre_config.hpp" #include <string> #include <string_view> namespace cru::platform::win { std::string ToUtf8String(const std::wstring_view& string); std::wstring ToUtf16String(const std::string_view& string); }