From 0b3d6b03ac40b4272e85995e40e4fc41219dd0ea Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Thu, 21 Oct 2021 17:01:04 +0200 Subject: [PATCH] Add helper docs --- Source/Engine/Platform/Base/PlatformBase.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Engine/Platform/Base/PlatformBase.h b/Source/Engine/Platform/Base/PlatformBase.h index ac2150c58..2b67f3720 100644 --- a/Source/Engine/Platform/Base/PlatformBase.h +++ b/Source/Engine/Platform/Base/PlatformBase.h @@ -726,9 +726,9 @@ public: public: /// - /// Starts a new process. + /// Starts a new process (runs app). /// - /// The path to the file. + /// The path to the executable file. /// Custom arguments for command line /// The custom name of the working directory /// True if start process with hidden window @@ -737,7 +737,7 @@ public: API_FUNCTION() static int32 StartProcess(const StringView& filename, const StringView& args, const StringView& workingDir, bool hiddenWindow = false, bool waitForEnd = false); /// - /// Starts a new process. Waits for it's end and captures its output. + /// Starts a new process (runs commandline). Waits for it's end and captures its output. /// /// Command line to execute /// The custom path of the working directory. @@ -746,7 +746,7 @@ public: API_FUNCTION() static int32 RunProcess(const StringView& cmdLine, const StringView& workingDir, bool hiddenWindow = true); /// - /// Starts a new process. Waits for it's end and captures its output. + /// Starts a new process (runs commandline). Waits for it's end and captures its output. /// /// Command line to execute /// The custom path of the working directory.