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.

66 lines
1.8 KiB

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__7D0D3F58_A3DD_48F6_8700_4549F2AD6207__INCLUDED_)
  5. #define AFX_MAINFRM_H__7D0D3F58_A3DD_48F6_8700_4549F2AD6207__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMainFrame : public CFrameWnd
  10. {
  11. protected: // create from serialization only
  12. CMainFrame();
  13. DECLARE_DYNCREATE(CMainFrame)
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CMainFrame)
  21. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  22. //}}AFX_VIRTUAL
  23. // Implementation
  24. public:
  25. virtual ~CMainFrame();
  26. #ifdef _DEBUG
  27. virtual void AssertValid() const;
  28. virtual void Dump(CDumpContext& dc) const;
  29. #endif
  30. protected: // control bar embedded members
  31. CStatusBar m_wndStatusBar;
  32. CToolBar m_wndToolBar;
  33. // Generated message map functions
  34. protected:
  35. //{{AFX_MSG(CMainFrame)
  36. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  37. afx_msg LRESULT OnDDEInitiate(WPARAM wp, LPARAM lp);
  38. afx_msg LRESULT OnDDEExecute(WPARAM wp, LPARAM lp);
  39. afx_msg LRESULT OnDDETerminate(WPARAM wp, LPARAM lp);
  40. // NOTE - the ClassWizard will add and remove member functions here.
  41. // DO NOT EDIT what you see in these blocks of generated code!
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. private:
  45. ATOM m_atomApp;
  46. ATOM m_atomTopic;
  47. };
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_MAINFRM_H__7D0D3F58_A3DD_48F6_8700_4549F2AD6207__INCLUDED_)