mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-23 13:25:27 +00:00
17 lines
322 B
C
17 lines
322 B
C
#ifndef CRASH_HANDLER_H
|
|
#define CRASH_HANDLER_H
|
|
|
|
#include <QString>
|
|
|
|
/**
|
|
* @fn void initCrashHandler()
|
|
*
|
|
* If CUTTER_ENABLE_CRASH_REPORTS is true, initializes
|
|
* crash handling and reporting, otherwise does nothing.
|
|
*/
|
|
void initCrashHandler();
|
|
|
|
void showCrashDialog(const QString &dumpFile);
|
|
|
|
#endif // CRASH_HANDLER_H
|