home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / dbmsg / ado / read / adoread.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-13  |  1.4 KB  |  55 lines

  1. //--------------------------------------------------------------------
  2. // Microsoft ADO Samples
  3. //
  4. // (c) 1996 Microsoft Corporation.  All Rights Reserved.
  5. //
  6. // @doc ADORead Sample
  7. //
  8. // @module    ADOread.h
  9. //
  10. // @devnote None
  11. //--------------------------------------------------------------------
  12. // ADORead.h : main header file for the ADOREAD application
  13. //
  14.  
  15. #ifndef __AFXWIN_H__
  16.     #error include 'stdafx.h' before including this file for PCH
  17. #endif
  18.  
  19. #include "resource.h"        // main symbols
  20. #include <objbase.h>
  21. #include <afxdisp.h>
  22. #include <tchar.h>            // Unicode
  23. //#include <ado.h>            // ADO C++ header
  24. #include "adoint.h"            // ADO C++ header
  25. #include "adoid.h"            // ADO C++ header
  26.  
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CADOReadApp:
  29. // See ADORead.cpp for the implementation of this class
  30. //
  31.  
  32. class CADOReadApp : public CWinApp
  33. {
  34. public:
  35.     CADOReadApp();
  36.  
  37. // Overrides
  38.     // ClassWizard generated virtual function overrides
  39.     //{{AFX_VIRTUAL(CADOReadApp)
  40.     public:
  41.     virtual BOOL InitInstance();
  42.     //}}AFX_VIRTUAL
  43.  
  44. // Implementation
  45.  
  46.     //{{AFX_MSG(CADOReadApp)
  47.         // NOTE - the ClassWizard will add and remove member functions here.
  48.         //    DO NOT EDIT what you see in these blocks of generated code !
  49.     //}}AFX_MSG
  50.     DECLARE_MESSAGE_MAP()
  51. };
  52.  
  53.  
  54. /////////////////////////////////////////////////////////////////////////////
  55.