home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Shareware / Programare / flashplayer / Samples / MFC / Demo / Demo.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-06-23  |  523 b   |  32 lines

  1. // Demo.h : main header file for the PROJECT_NAME application
  2. //
  3.  
  4. #pragma once
  5.  
  6. #ifndef __AFXWIN_H__
  7.     #error include 'stdafx.h' before including this file for PCH
  8. #endif
  9.  
  10. #include "resource.h"        // main symbols
  11.  
  12.  
  13. // CDemoApp:
  14. // See Demo.cpp for the implementation of this class
  15. //
  16.  
  17. class CDemoApp : public CWinApp
  18. {
  19. public:
  20.     CDemoApp();
  21.  
  22. // Overrides
  23.     public:
  24.     virtual BOOL InitInstance();
  25.  
  26. // Implementation
  27.  
  28.     DECLARE_MESSAGE_MAP()
  29.     virtual int ExitInstance();
  30. };
  31.  
  32. extern CDemoApp theApp;