1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-07-27 04:44:06 +00:00
openmw/components/crashcatcher/windowscrashdumppathhelpers.hpp

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