logic: fixed passing non-ascii characters to indexer process via command-line
This commit is contained in:
@@ -14,7 +14,12 @@ namespace utility
|
||||
{
|
||||
std::string executeProcess(const std::string& command, const FilePath& workingDirectory = FilePath(), const int timeout = 30000);
|
||||
std::string executeProcessUntilNoOutput(const std::string& command, const FilePath& workingDirectory, int waitTime = 10000);
|
||||
int executeProcessAndGetExitCode(const std::string& command, const FilePath& workingDirectory = FilePath(), const int timeout = 30000);
|
||||
int executeProcessAndGetExitCode(
|
||||
const std::wstring& commandPath,
|
||||
const std::vector<std::wstring>& commandArguments,
|
||||
const FilePath& workingDirectory = FilePath(),
|
||||
const int timeout = 30000
|
||||
);
|
||||
|
||||
void killRunningProcesses();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user