📄 asynchexceptionmgr.cpp
字号:
//
// FILE: AsynchExceptionMgr.cpp
//
// Copyright (c) 1997 by Aaron Michael Cohen and Mike Woodring
//
/////////////////////////////////////////////////////////////////////////
#include <windows.h>
#include <stdio.h>
#include "AsynchExceptionMgr.h"
void CAsynchronousExceptionManager::NotifyExceptionHandler
(
CExceptionHandler *pHandler,
CExceptionHandler::NOTIFICATION_CONTEXT Context,
DWORD dwExceptionCode
)
{
printf("[tid 0x%08lx] Fore!\n", GetCurrentThreadId());
// "Fore!"
//
pHandler->OnException(Context, dwExceptionCode);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -