home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / advanced / oldbars / oldbars.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.4 KB  |  52 lines

  1. // oldbars.h : main header file for the OLDBARS application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 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 related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. // Use "old" toolbar and status bar implementations
  14. #include "toolbar.h"
  15. #include "statbar.h"
  16.  
  17. #ifndef __AFXWIN_H__
  18.     #error include 'stdafx.h' before including this file for PCH
  19. #endif
  20.  
  21. #include "resource.h"       // main symbols
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // COldbarsApp:
  25. // See oldbars.cpp for the implementation of this class
  26. //
  27.  
  28. class COldbarsApp : public CWinApp
  29. {
  30. public:
  31.     COldbarsApp();
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(COldbarsApp)
  36.     public:
  37.     virtual BOOL InitInstance();
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41.  
  42.     //{{AFX_MSG(COldbarsApp)
  43.     afx_msg void OnAppAbout();
  44.         // NOTE - the ClassWizard will add and remove member functions here.
  45.         //    DO NOT EDIT what you see in these blocks of generated code !
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52.