mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-12-21 10:20:42 +00:00
64 lines
1.8 KiB
C++
64 lines
1.8 KiB
C++
// Emacs style mode select -*- C++ -*-
|
|
//-----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1998-2000 by DooM Legacy Team.
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License
|
|
// as published by the Free Software Foundation; either version 2
|
|
// of the License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//-----------------------------------------------------------------------------
|
|
/// \file
|
|
/// \brief exception handler
|
|
|
|
//#define WIN32_LEAN_AND_MEAN
|
|
#define RPC_NO_WINDOWS_H
|
|
#include <windows.h>
|
|
|
|
#ifdef BUGTRAP
|
|
|
|
BOOL InitBugTrap(void);
|
|
void ShutdownBugTrap(void);
|
|
BOOL IsBugTrapLoaded(void);
|
|
|
|
#endif
|
|
|
|
// called in the exception filter of the __try block, writes all useful debugging information
|
|
// to a file, using only win32 functions in case the C runtime is in a bad state.
|
|
LONG WINAPI RecordExceptionInfo(PEXCEPTION_POINTERS data/*, LPCSTR Message, LPSTR lpCmdLine*/);
|
|
|
|
extern LPTOP_LEVEL_EXCEPTION_FILTER prevExceptionFilter;
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
#include <excpt.h>
|
|
|
|
#ifndef TRYLEVEL_NONE
|
|
|
|
#ifndef __MINGW64__
|
|
#define NO_SEH_MINGW //Alam:?
|
|
#endif
|
|
#ifndef GetExceptionInformation
|
|
void *__cdecl _exception_info(void);
|
|
#define GetExceptionInformation (struct _EXCEPTION_POINTERS *)_exception_info
|
|
#endif //GetExceptionInformation
|
|
|
|
//Alam_GBC: use __try1(seh)
|
|
#ifndef __try
|
|
#define __try
|
|
#endif //__try
|
|
|
|
//#undef NO_SEH_MINGW //Alam: win_dbg's code not working with MINGW
|
|
//Alam_GBC: use __except1
|
|
#ifndef __except
|
|
#define __except(x) if (0)
|
|
#endif //__except
|
|
|
|
#endif // !__TRYLEVEL_NONE
|
|
|
|
#endif // __MINGW32__
|