2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-10-21 05:55:20 +00:00
Files
OpenAssetTools/src/ModMan/Web/Platform/Windows/PlatformUtilsWindows.h
2025-10-10 09:49:36 +02:00

17 lines
325 B
C++

#pragma once
#ifdef _WIN32
#include "Web/Platform/Platform.h"
#include <optional>
#include <string>
namespace PLATFORM_NAMESPACE_WINDOWS
{
std::string WideStringToString(const std::wstring& wideString);
std::wstring StringToWideString(const std::string& string);
} // namespace PLATFORM_NAMESPACE_WINDOWS
#endif