Revert feat(core): Start Process and DBUpdater (#13465)

Revert "feat(CORE): for Start Process and  DBUpdater

This a selective reverts for commits:
c855e8d227 and  636df19514. To re-enable the windows build to function again while applying updates.

Update DBUpdater.cpp
This commit is contained in:
M'Dic
2022-10-20 01:43:34 -04:00
committed by GitHub
parent 1fe126766f
commit e836f08cc4
3 changed files with 13 additions and 17 deletions

View File

@@ -23,7 +23,6 @@
#include <memory>
#include <string>
#include <vector>
#include <boost/process/environment.hpp>
namespace Acore
{
@@ -35,7 +34,7 @@ namespace Acore
/// Note that most executables expect it's name as the first argument.
AC_COMMON_API int StartProcess(std::string const& executable, std::vector<std::string> const& args,
std::string const& logger, std::string input_file = "",
bool secure = false, boost::process::environment env = boost::this_process::environment());
bool secure = false);
/// Platform and library independent representation
/// of asynchronous process results
@@ -59,7 +58,7 @@ namespace Acore
/// Note that most executables expect it's name as the first argument.
AC_COMMON_API std::shared_ptr<AsyncProcessResult> StartAsyncProcess(std::string executable, std::vector<std::string> args,
std::string logger, std::string input_file = "",
bool secure = false, boost::process::environment env = boost::this_process::environment());
bool secure = false);
/// Searches for the given executable in the PATH variable
/// and returns a non-empty string when it was found.