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

  1. // DAOTable.h : main header file for the DAOTABLE 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. #ifndef __AFXWIN_H__
  14.     #error include 'stdafx.h' before including this file for PCH
  15. #endif
  16.  
  17. #include "resource.h"       // main symbols
  18.  
  19.  
  20. // define success indicators
  21. #define SUCCESS 1
  22. #define FAILURE 0
  23. #define FATAL -1
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CDAOTableApp:
  27. // See DAOTable.cpp for the implementation of this class
  28. //
  29.  
  30. class CDAOTableApp : public CWinApp
  31. {
  32. public:
  33.     CDAOTableApp();
  34.  
  35. // Overrides
  36.     // ClassWizard generated virtual function overrides
  37.     //{{AFX_VIRTUAL(CDAOTableApp)
  38.     public:
  39.     virtual BOOL InitInstance();
  40.     //}}AFX_VIRTUAL
  41.  
  42. // Implementation
  43.  
  44.     //{{AFX_MSG(CDAOTableApp)
  45.         // NOTE - the ClassWizard will add and remove member functions here.
  46.         //    DO NOT EDIT what you see in these blocks of generated code !
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.  
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53.