home *** CD-ROM | disk | FTP | other *** search
/ The Best of Windows 95.com 1996 September / WIN95_09963.iso / strategy / hangman.zip / Hangman32.h < prev    next >
C/C++ Source or Header  |  1996-01-15  |  930b  |  40 lines

  1. // Hangman32.h : main header file for the HANGMAN32 application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"        // main symbols
  9. #include "Hangman32Dlg.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CHangman32App:
  12. // See Hangman32.cpp for the implementation of this class
  13. //
  14.  
  15. class CHangman32App : public CWinApp
  16. {
  17. public:
  18.     CHangman32App();
  19.     HWND   m_hwndDialog;
  20.     HACCEL m_AccelTable;
  21.     BOOL   m_doAccel;
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CHangman32App)
  26.     public:
  27.     virtual BOOL InitInstance();
  28.     virtual BOOL ProcessMessageFilter(int code, LPMSG lpMsg);
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32.  
  33.     //{{AFX_MSG(CHangman32App)
  34.     //}}AFX_MSG
  35.     DECLARE_MESSAGE_MAP()
  36. };
  37.  
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40.