From be1b9857f9d219811febf18e144fa4d1e63ca9fa Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Thu, 17 Dec 2020 13:39:39 +0100 Subject: [PATCH] Fix UWP build --- Source/Engine/Platform/Base/PlatformBase.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Source/Engine/Platform/Base/PlatformBase.cpp b/Source/Engine/Platform/Base/PlatformBase.cpp index cd91eb24d..2a0e23aea 100644 --- a/Source/Engine/Platform/Base/PlatformBase.cpp +++ b/Source/Engine/Platform/Base/PlatformBase.cpp @@ -443,6 +443,23 @@ void PlatformBase::TrackAllocation(uint64 size) #endif +void PlatformBase::GetEnvironmentVariables(Dictionary& result) +{ + // Not supported +} + +bool PlatformBase::GetEnvironmentVariable(const String& name, String& value) +{ + // Not supported + return true; +} + +bool PlatformBase::SetEnvironmentVariable(const String& name, const String& value) +{ + // Not supported + return true; +} + int32 PlatformBase::StartProcess(const StringView& filename, const StringView& args, const StringView& workingDir, bool hiddenWindow, bool waitForEnd) { // Not supported