On crash, takes minidump, then show MessageBox, and exit app.

This commit is contained in:
William Moberg
2016-02-12 03:32:42 +01:00
parent a15e01596a
commit 215b1b1aa4
3 changed files with 132 additions and 4 deletions
+8
View File
@@ -0,0 +1,8 @@
#ifndef MiniDump_h__
#define MiniDump_h__
#include <Windows.h>
void WINAPI Create_Dump(PEXCEPTION_POINTERS pException, BOOL File_Flag, BOOL Show_Flag);
#endif