impr: Don't show crash popup when sending ^C to command line

This commit is contained in:
WerWolv
2025-12-26 21:33:06 +01:00
parent 88c37bb7d9
commit d6d70ca076
3 changed files with 15 additions and 5 deletions

View File

@@ -1,7 +1,12 @@
#pragma once
#include <string>
namespace hex::crash {
using CrashCallback = void (*) (const std::string&);
void setCrashCallback(CrashCallback callback);
void setupCrashHandlers();
}