Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.1 KiB

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CMainFrame : public CFrameWnd
  5. {
  6. protected: // create from serialization only
  7. CMainFrame();
  8. DECLARE_DYNCREATE(CMainFrame)
  9. // Attributes
  10. public:
  11. // Operations
  12. public:
  13. // Overrides
  14. // ClassWizard generated virtual function overrides
  15. //{{AFX_VIRTUAL(CMainFrame)
  16. protected:
  17. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  18. //}}AFX_VIRTUAL
  19. // Implementation
  20. public:
  21. virtual ~CMainFrame();
  22. #ifdef _DEBUG
  23. virtual void AssertValid() const;
  24. virtual void Dump(CDumpContext& dc) const;
  25. #endif
  26. protected: // control bar embedded members
  27. CStatusBar m_wndStatusBar;
  28. CToolBar m_wndToolBar;
  29. // Generated message map functions
  30. protected:
  31. //{{AFX_MSG(CMainFrame)
  32. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  33. // NOTE - the ClassWizard will add and remove member functions here.
  34. // DO NOT EDIT what you see in these blocks of generated code!
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////