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 / getrows / getrows.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-02  |  1.3 KB  |  53 lines

  1. //--------------------------------------------------------------------
  2. // Microsoft ADO Samples
  3. //
  4. // (c) 1996 Microsoft Corporation.  All Rights Reserved.
  5. //
  6. // @doc GetRows Sample
  7. //
  8. // @module    getrows.h
  9. //
  10. // @devnote None
  11. //--------------------------------------------------------------------
  12.  
  13. #ifndef __AFXWIN_H__
  14.     #error include 'stdafx.h' before including this file for PCH
  15. #endif
  16.  
  17. #include <objbase.h>
  18. #include <afxdisp.h>
  19. #include <tchar.h>            // Unicode
  20. #include <adoid.h>            // ADO C++ header     
  21. #include <adoint.h>            // ADO C++ header
  22.  
  23. #include "resource.h"        // main symbols
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CGetRowsApp:
  27. // See GetRows.cpp for the implementation of this class
  28. //
  29.  
  30. class CGetRowsApp : public CWinApp
  31. {
  32. public:
  33.     CGetRowsApp();
  34.  
  35. // Overrides
  36.     // ClassWizard generated virtual function overrides
  37.     //{{AFX_VIRTUAL(CGetRowsApp)
  38.     public:
  39.     virtual BOOL InitInstance();
  40.     //}}AFX_VIRTUAL
  41.  
  42. // Implementation
  43.  
  44.     //{{AFX_MSG(CGetRowsApp)
  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.