mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-29 05:17:58 +03:00
14 lines
465 B
C++
14 lines
465 B
C++
![]() |
#include "windowscrashdumppathhelpers.hpp"
|
||
|
|
||
|
#include <boost/filesystem/path.hpp>
|
||
|
|
||
|
std::string Crash::getCrashDumpPath(const CrashSHM& crashShm)
|
||
|
{
|
||
|
return (boost::filesystem::path(crashShm.mStartup.mDumpDirectoryPath) / crashShm.mStartup.mCrashDumpFileName).string();
|
||
|
}
|
||
|
|
||
|
std::string Crash::getFreezeDumpPath(const CrashSHM& crashShm)
|
||
|
{
|
||
|
return (boost::filesystem::path(crashShm.mStartup.mDumpDirectoryPath) / crashShm.mStartup.mFreezeDumpFileName).string();
|
||
|
}
|