DLGCBAR.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // DlgCbar.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /*****************************************************************************
  13.   Purpose:
  14. Interface for CTheApp.  This class encapsulates the initialization,
  15. running, and termination of the DLGCBAR application.  There must be
  16. exactly one object of class CTheApp in the application.  The object
  17. must be declared at the global level.
  18.   Functions:
  19. CTheApp::CTheApp()          -- constructor
  20. CTheApp::~CTheApp()         -- destructor
  21. CTheApp::FirstInstance()    -- locate first instance of app
  22. CTheApp::InitInstance()     -- initialize app-instance
  23. CTheApp::OnHelpAbout()      -- display About box
  24.   Development Team:
  25. Mary Kirtland
  26.   Ported to 32-bit by:
  27. Mike Hedley
  28.   Created by Microsoft Product Support Services, Premier ISV Support
  29.   Copyright (c) 1998 Microsoft Corporation. All rights reserved.
  30. ****************************************************************************/
  31. #ifndef __DLGCBAR_H__
  32. #define __DLGCBAR_H__
  33. class CTheApp : public CWinApp
  34. {
  35. public:
  36. CTheApp();
  37. // Overrides
  38. // ClassWizard generated virtual function overrides
  39. //{{AFX_VIRTUAL(CTheApp)
  40. public:
  41. virtual BOOL InitInstance();
  42. //}}AFX_VIRTUAL
  43. // Implementation
  44. public:
  45. virtual ~CTheApp();
  46. protected:
  47. BOOL FirstInstance();
  48. // Generated message map functions
  49. //{{AFX_MSG(CTheApp)
  50. afx_msg void OnHelpAbout();
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. #endif //__DLGCBAR_H__