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

  1. // hello.h : Declares the class interfaces for the application.
  2. //         Hello is a simple program which consists of a main window
  3. //         and an "About" dialog which can be invoked by a menu choice.
  4. //         It is intended to serve as a starting-point for new
  5. //         applications.
  6. //
  7. // This is a part of the Microsoft Foundation Classes C++ library.
  8. // Copyright (C) 1992-1998 Microsoft Corporation
  9. // All rights reserved.
  10. //
  11. // This source code is only intended as a supplement to the
  12. // Microsoft Foundation Classes Reference and related
  13. // electronic documentation provided with the library.
  14. // See these sources for detailed information regarding the
  15. // Microsoft Foundation Classes product.
  16.  
  17. #ifndef __HELLO_H__
  18. #define __HELLO_H__
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21.  
  22. // CMainWindow:
  23. // See hello.cpp for the code to the member functions and the message map.
  24. //
  25. class CMainWindow : public CFrameWnd
  26. {
  27. public:
  28.     CMainWindow();
  29.  
  30.     //{{AFX_MSG( CMainWindow )
  31.     afx_msg void OnPaint();
  32.     afx_msg void OnAbout();
  33.     //}}AFX_MSG
  34.  
  35.     DECLARE_MESSAGE_MAP()
  36. };
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39.  
  40. // CTheApp:
  41. // See hello.cpp for the code to the InitInstance member function.
  42. //
  43. class CTheApp : public CWinApp
  44. {
  45. public:
  46.     virtual BOOL InitInstance();
  47. };
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50.  
  51. #endif // __HELLO_H__
  52.