mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-18 22:12:18 +00:00
17 lines
445 B
C++
17 lines
445 B
C++
#include <os/process.h>
|
|
#include <os/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);
|
|
}
|