From dd68940bb65e1224832dec1087c922e62c654ca8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Wed, 11 Jan 2012 11:17:08 +0000 Subject: [PATCH] Fix build with older MinGW headers. --- common/os_win32.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/os_win32.cpp b/common/os_win32.cpp index b35346e..7b35ccf 100644 --- a/common/os_win32.cpp +++ b/common/os_win32.cpp @@ -235,6 +235,10 @@ abort(void) } +#ifndef DBG_PRINTEXCEPTION_C +#define DBG_PRINTEXCEPTION_C 0x40010006 +#endif + static PVOID prevExceptionFilter = NULL; static void (*gCallback)(void) = NULL; -- 2.43.0