mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-28 07:47:03 -05:00
12 lines
199 B
C++
12 lines
199 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace hex::crash {
|
|
|
|
using CrashCallback = void (*) (const std::string&);
|
|
|
|
void setCrashCallback(CrashCallback callback);
|
|
void setupCrashHandlers();
|
|
|
|
} |