2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-10-22 06:16:01 +00:00

feat: add dialog handler for ModMan

This commit is contained in:
Jan Laupetin
2025-10-09 17:35:55 +01:00
parent f838ed1291
commit 5bbeaed3a3
22 changed files with 771 additions and 80 deletions

View File

@@ -0,0 +1,16 @@
#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