Files
UnleashedRecomp-hedge-dev/UnleashedRecomp/os/process.h
2025-01-19 21:09:47 +03:00

9 lines
265 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 = {});
}