mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
19 lines
405 B
C
19 lines
405 B
C
#pragma once
|
|
|
|
#include <cinttypes>
|
|
|
|
#define NOMINMAX
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <Windows.h>
|
|
|
|
struct exception_info
|
|
{
|
|
LPEXCEPTION_POINTERS pExceptionPointers;
|
|
EXCEPTION_POINTERS ExceptionPointers;
|
|
EXCEPTION_RECORD ExceptionRecord;
|
|
CONTEXT ContextRecord;
|
|
uint64_t nLifetime;
|
|
HANDLE hThreadHandle;
|
|
DWORD dwStackTraceLength;
|
|
DWORD dwTroubleshootingPackDataLength;
|
|
};
|