?? cmadthreadhandler.h
字號:
//
// FILE: CMADThreadHandler.h
//
// Copyright (c) 1997 by Aaron Michael Cohen and Mike Woodring
//
/////////////////////////////////////////////////////////////////////////
#ifndef __MadThreadHandler__
#define __MadThreadHandler__
#include <CMclGlobal.h>
#include <CMclEvent.h>
#include <CMclThread.h>
class CMADThreadHandler : public CMclThreadHandler
{
public:
CMADThreadHandler( CMclEvent& ExitEvent );
~CMADThreadHandler();
virtual unsigned ThreadHandlerProc( void );
private:
static LONG WINAPI UnhandledExceptionFilter( PEXCEPTION_POINTERS pExceptionInfo );
private:
CMclEvent& m_ExitEvent;
static CMclEvent s_MADEvent;
static LPTOP_LEVEL_EXCEPTION_FILTER s_pPrevUnhandledExceptionFilter;
};
#endif // __MadThreadHandler__
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -