REDRIVER2/src_rebuild/EMULATOR/CRASHHANDLER.H
2020-03-31 22:56:49 +06:00

12 lines
222 B
C

#ifndef CRASHHANDLER_H
#define CRASHHANDLER_H
#if defined (_WINDOWS)
#include <windows.h>
#include <Dbghelp.h>
#include <tchar.h>
LONG WINAPI unhandled_handler(struct _EXCEPTION_POINTERS* apExceptionInfo);
#endif
#endif