mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-31 00:10:26 -06:00
18 lines
439 B
C++
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);
|
|
}
|