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

  1. // dlgtemp.h : main header file for the DLGTEMP application
  2. //
  3.  
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1998 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. #ifndef __AFXWIN_H__
  15.     #error include 'stdafx.h' before including this file for PCH
  16. #endif
  17.  
  18. #include "resource.h"       // main symbols
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CDlgtempApp:
  22. // See dlgtemp.cpp for the implementation of this class
  23. //
  24.  
  25. class CDlgtempApp : public CWinApp
  26. {
  27. public:
  28.     CDlgtempApp();
  29.  
  30. // Overrides
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CDlgtempApp)
  33.     public:
  34.     virtual BOOL InitInstance();
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38.  
  39.     //{{AFX_MSG(CDlgtempApp)
  40.         // NOTE - the ClassWizard will add and remove member functions here.
  41.         //    DO NOT EDIT what you see in these blocks of generated code !
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.  
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48.