crashfinder.h

来自「可以用于.net2005或.net2003中的vc调试」· C头文件 代码 · 共 58 行

H
58
字号
/*----------------------------------------------------------------------
"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 + =
减小字号Ctrl + -
显示快捷键?