UnleashedRecomp/UnleashedRecomp/os/process.h
2025-01-30 19:16:21 +03:00

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();
}