summaryrefslogtreecommitdiffstats
path: root/HandleCrash.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2014-11-15 23:22:08 +0100
committerPetr Mrázek <peterix@gmail.com>2014-11-15 23:35:24 +0100
commitb7c4284019e1589f343ea7b497d4f5eb1be0556d (patch)
tree5263a94518770ffc327d6fb43487719d7dce4d31 /HandleCrash.h
parent2315bf7bc518405f6d548250cdfda67fb76b3bb0 (diff)
downloadMultiMC-b7c4284019e1589f343ea7b497d4f5eb1be0556d.tar
MultiMC-b7c4284019e1589f343ea7b497d4f5eb1be0556d.tar.gz
MultiMC-b7c4284019e1589f343ea7b497d4f5eb1be0556d.tar.lz
MultiMC-b7c4284019e1589f343ea7b497d4f5eb1be0556d.tar.xz
MultiMC-b7c4284019e1589f343ea7b497d4f5eb1be0556d.zip
Remove crash handler
Diffstat (limited to 'HandleCrash.h')
-rw-r--r--HandleCrash.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/HandleCrash.h b/HandleCrash.h
deleted file mode 100644
index 3b2e7d00..00000000
--- a/HandleCrash.h
+++ /dev/null
@@ -1,18 +0,0 @@
-// This is a simple header file for the crash handling system. It exposes only one method,
-// initBlackMagic, which initializes the system, registering signal handlers, or doing
-// whatever stupid things need to be done on Windows.
-// The platform specific implementations for this system are in UnixCrash.cpp and
-// WinCrash.cpp.
-
-#if defined Q_OS_WIN
-#warning Crash handling is not yet implemented on Windows.
-#elif defined Q_OS_UNIX
-#else
-#warning Crash handling is not supported on this platform.
-#endif
-
-/**
- * Initializes the crash handling system.
- */
-void initBlackMagic();
-