iw4x-client/src/Components/Modules/Exception.hpp
2022-12-25 18:23:53 +01:00

26 lines
558 B
C++

#pragma once
namespace Components
{
class Exception : public Component
{
public:
Exception();
~Exception();
static LPTOP_LEVEL_EXCEPTION_FILTER Hook();
static void SetMiniDumpType(bool codeseg, bool dataseg);
private:
static void SuspendProcess();
static LONG WINAPI ExceptionFilter(LPEXCEPTION_POINTERS ExceptionInfo);
static __declspec(noreturn) void LongJmp_Internal_Stub(jmp_buf env, int status);
static void CopyMessageToClipboard(const std::string& error);
static int MiniDumpType;
static Utils::Hook SetFilterHook;
};
}