Files
UnleashedRecomp-hedge-dev/UnleashedRecomp/os/process.cpp

18 lines
439 B
C++

#include "process.h"
#include "process_detail.h"
std::filesystem::path os::process::GetExecutablePath()
{
return detail::GetExecutablePath();
}
std::filesystem::path os::process::GetWorkingDirectory()
{
return detail::GetWorkingDirectory();
}
bool os::process::StartProcess(const std::filesystem::path path, const std::vector<std::string> args, std::filesystem::path work)
{
return detail::StartProcess(path, args, work);
}