mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-23 19:02:35 +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 |