mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-21 15:32:18 +00:00
10 lines
354 B
C++
10 lines
354 B
C++
#pragma once
|
|
|
|
namespace os::process
|
|
{
|
|
std::filesystem::path GetExecutablePath();
|
|
std::filesystem::path GetWorkingDirectory();
|
|
bool SetWorkingDirectory(const std::filesystem::path& path);
|
|
bool StartProcess(const std::filesystem::path& path, const std::vector<std::string>& args, std::filesystem::path work = {});
|
|
void ShowConsole();
|
|
}
|