mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 12:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			368 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			368 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef OPENMW_COMPONENTS_CRASHCATCHER_WINDOWSCRASHDUMPPATHHELPERS_HPP
 | 
						|
#define OPENMW_COMPONENTS_CRASHCATCHER_WINDOWSCRASHDUMPPATHHELPERS_HPP
 | 
						|
 | 
						|
#include <filesystem>
 | 
						|
 | 
						|
#include "windowscrashshm.hpp"
 | 
						|
 | 
						|
namespace Crash
 | 
						|
{
 | 
						|
    std::filesystem::path getCrashDumpPath(const CrashSHM& crashShm);
 | 
						|
 | 
						|
    std::filesystem::path getFreezeDumpPath(const CrashSHM& crashShm);
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |