Add support for allocator type in Dictionary

This commit is contained in:
2021-07-08 00:33:51 +02:00
parent f5e5686853
commit 4765e1af12
17 changed files with 170 additions and 181 deletions
+2 -2
View File
@@ -705,7 +705,7 @@ public:
/// Gets the process environment variables (pairs of key and value).
/// </summary>
/// <param name="result">The result.</param>
static void GetEnvironmentVariables(Dictionary<String, String>& result);
static void GetEnvironmentVariables(Dictionary<String, String, HeapAllocation>& result);
/// <summary>
/// Gets the environment variable value.
@@ -753,7 +753,7 @@ public:
/// <param name="environment">The process environment variables. If null the current process environment is used.</param>
/// <param name="hiddenWindow">True if start process with hidden window.</param>
/// <returns>Retrieves the termination status of the specified process. Valid only if processed ended.</returns>
API_FUNCTION() static int32 RunProcess(const StringView& cmdLine, const StringView& workingDir, const Dictionary<String, String>& environment, bool hiddenWindow = true);
API_FUNCTION() static int32 RunProcess(const StringView& cmdLine, const StringView& workingDir, const Dictionary<String, String, HeapAllocation>& environment, bool hiddenWindow = true);
/// <summary>
/// Creates the window.