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

  1. // dynamenu.h
  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. // Purpose: interface of the CDynaMenuApp class
  14. //
  15. // Functions:
  16. //      Most of this file was generated by AppWizard.  The functions
  17. //      which contain code specific to this sample are:
  18. //
  19. //      CDynaMenuApp::InitInstance()         -- per-instance initialization
  20.  
  21. #ifndef __AFXWIN_H__
  22.     #error include 'stdafx.h' before including this file for PCH
  23. #endif
  24.  
  25. #include "resource.h"       // main symbols
  26.  
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CDynaMenuApp:
  29. // See dynamenu.cpp for the implementation of this class
  30. //
  31.  
  32. class CDynaMenuApp : public CWinApp
  33. {
  34. public:
  35.     CDynaMenuApp();
  36.  
  37. // Overrides
  38.     virtual BOOL InitInstance();
  39.  
  40. // Implementation
  41.  
  42.     //{{AFX_MSG(CDynaMenuApp)
  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.