iw4x-client/src/Components/Modules/Exception.hpp

14 lines
360 B
C++
Raw Normal View History

2016-01-08 14:10:35 -05:00
namespace Components
{
class Exception : public Component
{
public:
Exception();
const char* GetName() { return "Exception"; };
private:
static LONG WINAPI ExceptionFilter(LPEXCEPTION_POINTERS ExceptionInfo);
static LPTOP_LEVEL_EXCEPTION_FILTER WINAPI SetUnhandledExceptionFilterStub(LPTOP_LEVEL_EXCEPTION_FILTER lpTopLevelExceptionFilter);
};
}