home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / msj / v10n03 / bocole.exe / MDI.H < prev    next >
C/C++ Source or Header  |  1995-03-01  |  1KB  |  49 lines

  1. // mdi.h : main header file for the MDI application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 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 Microsoft
  9. // QuickHelp and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14.  
  15. #ifndef __AFXWIN_H__
  16.     #error include 'stdafx.h' before including this file for PCH
  17. #endif
  18.  
  19. #include "resource.h"       // main symbols
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CMdiApp:
  23. // See mdi.cpp for the implementation of this class
  24. //
  25.  
  26. class CMdiApp : public CWinApp
  27. {
  28. public:
  29.     CMdiApp();
  30.   virtual ~CMdiApp();
  31.  
  32. // Overrides
  33.     virtual BOOL InitInstance();
  34.  
  35. // Implementation
  36.  
  37.     //{{AFX_MSG(CMdiApp)
  38.         afx_msg void OnAppAbout();
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. };
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44. // other globals
  45.  
  46. extern COLORREF NEAR colorArray[];      // color index table
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49.