mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-10-21 05:55:20 +00:00
17 lines
325 B
C++
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
|