2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-11-17 18:52:06 +00:00

chore: only one header per modman platform handler

This commit is contained in:
Jan Laupetin
2025-11-02 19:01:22 +00:00
parent d964929681
commit 2aeaa417b6
21 changed files with 99 additions and 181 deletions

View File

@@ -1,16 +1,15 @@
#pragma once
#ifdef _WIN32
#include "Web/Platform/Platform.h"
#include <optional>
#ifdef PLATFORM_WINDOWS
#include <string>
namespace PLATFORM_NAMESPACE_WINDOWS
namespace utils
{
std::string WideStringToString(const std::wstring& wideString);
std::wstring StringToWideString(const std::string& string);
} // namespace PLATFORM_NAMESPACE_WINDOWS
} // namespace utils
#endif