| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /*
- ** Command & Conquer Generals Zero Hour(tm)
- ** Copyright 2025 Electronic Arts Inc.
- **
- ** 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 3 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.
- **
- ** You should have received a copy of the GNU General Public License
- ** along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /////////////////////////////////////////////////////////////////////////EA-V1
- // $File: //depot/GeneralsMD/Staging/code/Libraries/Source/debug/internal_except.h $
- // $Author: mhoffe $
- // $Revision: #1 $
- // $DateTime: 2003/07/03 11:55:26 $
- //
- // ©2003 Electronic Arts
- //
- // Unhandled exception handler
- //////////////////////////////////////////////////////////////////////////////
- #ifdef _MSC_VER
- # pragma once
- #endif
- #ifndef INTERNAL_EXCEPT_H // Include guard
- #define INTERNAL_EXCEPT_H
- /// \internal exception handler
- class DebugExceptionhandler
- {
- DebugExceptionhandler(const DebugExceptionhandler&);
- DebugExceptionhandler& operator=(const DebugExceptionhandler&);
- // nobody can instantiate us
- DebugExceptionhandler(void);
- /** \internal
- \brief Log exception location.
- \param dbg debug instance
- \param exptr exception pointers
- */
- static void LogExceptionLocation(Debug &dbg, struct _EXCEPTION_POINTERS *exptr);
- /** \internal
- \brief Log regular registers.
- \param dbg debug instance
- \param exptr exception pointers
- */
- static void LogRegisters(Debug &dbg, struct _EXCEPTION_POINTERS *exptr);
- /** \internal
- \brief Log FPU registers.
- \param dbg debug instance
- \param exptr exception pointers
- */
- static void LogFPURegisters(Debug &dbg, struct _EXCEPTION_POINTERS *exptr);
- public:
-
- /** \internal
- \brief Determine exception type.
- \param exptr exception pointers
- \param explanation exception explanation, buffer must be 512 chars
- \return exception type as string
- */
- static const char *GetExceptionType(struct _EXCEPTION_POINTERS *exptr, char *explanation);
- /** \internal
-
- \brief System exception filter
- */
- static long __stdcall ExceptionFilter(struct _EXCEPTION_POINTERS* pExPtrs);
- };
- #endif // INTERNAL_EXCEPT_H
|