mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-03 17:37:18 +00:00
14 lines
281 B
C++
14 lines
281 B
C++
|
#ifndef COMPONENTS_CRASH_WINDOWSCRASHDUMPPATHHELPERS_H
|
||
|
#include "windows_crashshm.hpp"
|
||
|
|
||
|
#include <filesystem>
|
||
|
|
||
|
namespace Crash
|
||
|
{
|
||
|
std::filesystem::path getCrashDumpPath(const CrashSHM& crashShm);
|
||
|
|
||
|
std::filesystem::path getFreezeDumpPath(const CrashSHM& crashShm);
|
||
|
}
|
||
|
|
||
|
#endif
|