mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
19 lines
424 B
C++
19 lines
424 B
C++
#pragma once
|
|
|
|
#include "windows.h"
|
|
|
|
struct exception_info
|
|
{
|
|
void* ExceptionPointers; // Cannot dereference!
|
|
DWORD ThreadId;
|
|
DWORD ProcessId;
|
|
BOOL DoFullDump;
|
|
wchar_t DumpPath[1000];
|
|
|
|
// For metrics
|
|
DWORD ExceptionCode;
|
|
long long Lifetime;
|
|
};
|
|
|
|
constexpr wchar_t SHARED_INFO_FILE_NAME[] = L"DalamudCrashInfoShare";
|
|
constexpr wchar_t CRASHDUMP_EVENT_NAME[] = L"Global\\DalamudRequestWriteDump";
|