mirror of
				https://github.com/hedge-dev/UnleashedRecomp.git
				synced 2025-10-30 07:11:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			461 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			461 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| namespace os::process
 | |
| {
 | |
|     inline bool g_consoleVisible;
 | |
| 
 | |
|     std::filesystem::path GetExecutablePath();
 | |
|     std::filesystem::path GetExecutableRoot();
 | |
|     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 CheckConsole();
 | |
|     void ShowConsole();
 | |
| }
 | 
