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

  1. // MFCRow.h : main header file for the MFCROW application
  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. #if !defined(AFX_MFCROW_H__2B60A6FC_22FC_11D1_8FD3_000000000000__INCLUDED_)
  14. #define AFX_MFCROW_H__2B60A6FC_22FC_11D1_8FD3_000000000000__INCLUDED_
  15.  
  16. #if _MSC_VER >= 1000
  17. #pragma once
  18. #endif // _MSC_VER >= 1000
  19.  
  20. #ifndef __AFXWIN_H__
  21.     #error include 'stdafx.h' before including this file for PCH
  22. #endif
  23.  
  24. #include "resource.h"       // main symbols
  25.  
  26. // Make our _Module visible to everyone
  27.  
  28. extern CComModule _Module;
  29.  
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CMFCRowApp:
  32. // See MFCRow.cpp for the implementation of this class
  33. //
  34.  
  35. class CMFCRowApp : public CWinApp
  36. {
  37. public:
  38.     CMFCRowApp();
  39.  
  40. // Overrides
  41.     // ClassWizard generated virtual function overrides
  42.     //{{AFX_VIRTUAL(CMFCRowApp)
  43.     public:
  44.     virtual BOOL InitInstance();
  45.     //}}AFX_VIRTUAL
  46.  
  47. // Implementation
  48.  
  49.     //{{AFX_MSG(CMFCRowApp)
  50.     afx_msg void OnAppAbout();
  51.         // NOTE - the ClassWizard will add and remove member functions here.
  52.         //    DO NOT EDIT what you see in these blocks of generated code !
  53.     //}}AFX_MSG
  54.     DECLARE_MESSAGE_MAP()
  55. };
  56.  
  57.  
  58. /////////////////////////////////////////////////////////////////////////////
  59.  
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  62.  
  63. #endif // !defined(AFX_MFCROW_H__2B60A6FC_22FC_11D1_8FD3_000000000000__INCLUDED_)
  64.