⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crashfinder.h

📁 可以用于.net2005或.net2003中的vc调试
💻 H
字号:
/*----------------------------------------------------------------------
"Debugging Applications" (Microsoft Press)
Copyright (c) 1997-2000 John Robbins -- All rights reserved.

With excellent updates from Scott Bloom, Ching Ming Kwok,
Jeff Shanholtz, and Pablo Presedo!
----------------------------------------------------------------------*/
#if !defined ( _CRASHFINDER_H )
#define _CRASHFINDER_H

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

#ifndef __AFXWIN_H__
    #error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"       // main symbols

class CCrashFinderApp : public CWinApp
{
public      :

    CCrashFinderApp ( ) ;

public      :
    virtual BOOL InitInstance ( ) ;
    virtual int ExitInstance ( ) ;
    afx_msg void OnAppAbout ( ) ;
    afx_msg void OnViewOptions ( ) ;

    DECLARE_MESSAGE_MAP ( )

public      :
    // Called by documents to get the global application values.
    BOOL ConfirmDeletions ( void ) const ;
    BOOL ShowFullPaths ( void ) const ;

protected   :
    // Saves the global application state.
    void SaveGlobalState ( void ) ;
    // Restored the global application state.
    void RestoreGlobalState ( void ) ;

public      :
    // The application global options.
    BOOL m_bShowFullPaths ;
    BOOL m_bConfirmDeletions ;
    BOOL m_bOneLine ;
    BOOL m_bShowDisplacements ;

public      :
} ;


#endif // _CRASHFINDER_H

⌨️ 快捷键说明

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