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

9 lines
263 B
C++

#pragma once
namespace os::process
{
std::filesystem::path GetExecutablePath();
std::filesystem::path GetWorkingDirectory();
bool StartProcess(const std::filesystem::path path, const std::vector<std::string> args, std::filesystem::path work = {});
}