home *** CD-ROM | disk | FTP | other *** search
- //=------------------------------------------------------------------------=
- // MainFrm.h
- //=------------------------------------------------------------------------=
- // Copyright 1992-1996 Microsoft Corporation. All Rights Reserved.
- //
- // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
- // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
- // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
- // PARTICULAR PURPOSE.
- //=--------------------------------------------------------------------------=
- //
- // Definition of the CMainFrm class
- //
-
- #ifndef __AFXEXT_H__
- #include <afxext.h> // for access to CToolBar and CStatusBar
- #endif
-
- class CMainFrame : public CMDIFrameWnd
- {
- DECLARE_DYNCREATE(CMainFrame)
- public:
- void InitialShowWindow(UINT nCmdShow);
- void MyShowPane( LPCSTR text ) ;
-
- protected:
- CStatusBar m_wndStatusBar;
- CToolBar m_wndToolBar;
-
- protected:
- //{{AFX_MSG(CMainFrame)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnClose();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-