home *** CD-ROM | disk | FTP | other *** search
/ Cutting-Edge 3D Game Programming with C++ / CE3DC++.ISO / TOOLS / VFW / VFWDK / MAINFRM.H_ / MAINFRM.bin
Encoding:
Text File  |  1993-11-19  |  1.4 KB  |  50 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. //
  4. //  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  5. //  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  6. //  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  7. //  PURPOSE.
  8. //
  9. //  Copyright (c) 1992, 1993  Microsoft Corporation.  All Rights Reserved.
  10. // 
  11. /////////////////////////////////////////////////////////////////////////////
  12.  
  13. class CMainFrame : public CMDIFrameWnd
  14. {
  15.         DECLARE_DYNAMIC(CMainFrame)
  16. public:
  17.         CMainFrame();
  18.         void StatusCallback (int nID, LPCSTR lpStatusText);
  19. // Attributes
  20. public:
  21.  
  22. // Operations
  23. public:
  24.  
  25. // Implementation
  26. public:
  27.         virtual ~CMainFrame();
  28. #ifdef _DEBUG
  29.         virtual void AssertValid() const;
  30.         virtual void Dump(CDumpContext& dc) const;
  31. #endif
  32.  
  33.  
  34. protected:      // control bar embedded members
  35.         CStatusBar      m_wndStatusBar;
  36.         CToolBar        m_wndToolBar;
  37.  
  38. // Generated message map functions
  39. protected:
  40.         //{{AFX_MSG(CMainFrame)
  41.         afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  42.         afx_msg void OnWindowTileHorz();
  43.     afx_msg void OnPaletteChanged(CWnd* pFocusWnd);
  44.     afx_msg BOOL OnQueryEndSession();
  45.     //}}AFX_MSG
  46.         DECLARE_MESSAGE_MAP()
  47. };
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50.