mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-11-17 18:52:06 +00:00
16 lines
273 B
C++
16 lines
273 B
C++
#pragma once
|
|
|
|
#include "Web/Platform/Platform.h"
|
|
|
|
#ifdef PLATFORM_WINDOWS
|
|
|
|
#include <string>
|
|
|
|
namespace utils
|
|
{
|
|
std::string WideStringToString(const std::wstring& wideString);
|
|
std::wstring StringToWideString(const std::string& string);
|
|
} // namespace utils
|
|
|
|
#endif
|