#include #include 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 args, std::filesystem::path work) { return detail::StartProcess(path, args, work); }