mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-24 19:32:50 +01:00
12 lines
222 B
C++
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
|