📄 exceptions.h
字号:
#ifndef __DFLT_EXCEPTION_HANDLERS_H__
#define __DFLT_EXCEPTION_HANDLERS_H__
#pragma once
#ifdef _DEBUG
#define CATCH_DFLT_ALL(fname)
#else
#define CATCH_DFLT_ALL(fname) \
catch(...){ \
if (thePrefs.GetVerbose() && theApp.emuledlg) \
theApp.emuledlg->AddDebugLogLine(false, _T("Unknown exception in ") fname); \
ASSERT(0); \
}
#endif
// This type of "last chance" exception handling is to be used at least in several callback functions to avoid memory leaks.
// It is *not* thought as a proper handling of exceptions in general!
// -> Use explicit exception handlers where needed!
#define CATCH_DFLT_EXCEPTIONS(fname) \
catch(CException* e){ \
TCHAR szError[1024]; \
e->GetErrorMessage(szError, ARRSIZE(szError)); \
const CRuntimeClass* pRuntimeClass = e->GetRuntimeClass(); \
LPCSTR pszClassName = (pRuntimeClass) ? pRuntimeClass->m_lpszClassName : NULL; \
if (!pszClassName) \
pszClassName = "CException"; \
if (thePrefs.GetVerbose() && theApp.emuledlg) \
theApp.emuledlg->AddDebugLogLine(false, _T("Unknown %hs exception in ") fname _T(" - %s"), pszClassName, szError); \
e->Delete(); \
} \
catch(CString strError){ \
if (thePrefs.GetVerbose() && theApp.emuledlg) \
theApp.emuledlg->AddDebugLogLine(false, _T("Unknown CString exception in ") fname _T(" - %s"), strError); \
}
class CMsgBoxException : public CException
{
DECLARE_DYNAMIC(CMsgBoxException)
public:
CMsgBoxException(LPCTSTR pszMsg, UINT uType = MB_ICONWARNING, UINT uHelpID = 0)
{
m_strMsg = pszMsg;
m_uType = uType;
m_uHelpID = uHelpID;
}
CString m_strMsg;
UINT m_uType;
UINT m_uHelpID;
};
class CClientException : public CException
{
DECLARE_DYNAMIC(CClientException)
public:
CClientException(LPCTSTR pszMsg, bool bDelete)
{
m_strMsg = pszMsg;
m_bDelete = bDelete;
}
CString m_strMsg;
bool m_bDelete;
};
#endif//!__DFLT_EXCEPTION_HANDLERS_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -