exceptionreport.h

来自「一个支持FTP,SFTP的客户端程序」· C头文件 代码 · 共 59 行

H
59
字号
// FileZilla - a Windows ftp client

// Copyright (C) 2004 - Tim Kosse <tim.kosse@gmx.de>

// 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 2
// 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, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

// OptionsTypePage.cpp: Implementierungsdatei
//

#pragma once

class CExceptionReport
{
public:
	CExceptionReport();
	~CExceptionReport();

	static LONG WINAPI UnhandledExceptionFilter(PEXCEPTION_POINTERS pExceptionInfo);

private:
	static void CreateReport(PEXCEPTION_POINTERS pExceptionInfo);

	static void StackWalk(CONTEXT Context);
	static BOOL GetAddrDetails(PVOID addr, PTSTR szModule, DWORD len, DWORD& section, DWORD& offset);
	static bool writeMiniDump(PEXCEPTION_POINTERS pExceptionInfo);
	static LPTSTR GetExceptionString(DWORD dwCode);

	static int sendMail();
	static void SuspendThreads();

	static void AddToReport(const WCHAR * pText);
	static void AddToReport(const char * pText);
	static void AddToReport(int number);
	static void AddToReportHex(_int64 number, int minDigits = 0);

	static LPTOP_LEVEL_EXCEPTION_FILTER m_previousExceptionFilter;
	static TCHAR m_pLogFileName[MAX_PATH];
	static HANDLE m_hReportFile;
	static TCHAR m_pDmpFileName[MAX_PATH];
	static HANDLE m_hDumpFile;
	
	static BOOL m_bFirstRun;
};


extern CExceptionReport ExceptionReport; //global instance of class

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?