home *** CD-ROM | disk | FTP | other *** search
/ Looney Tunes Photo Fun / LooneyTunesPhotoFun.iso / Daosdk / DISK4 / DAOSDK.1 / getrows.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-06  |  1022 b   |  42 lines

  1. // GetRows.h : main header file for the GETROWS application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include <objbase.h>
  9. #include <afxdisp.h>
  10. #include <tchar.h>            // Unicode
  11. #include <dbdao.h>            // DAO C++ header
  12. #include "resource.h"        // main symbols
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CGetRowsApp:
  16. // See GetRows.cpp for the implementation of this class
  17. //
  18.  
  19. class CGetRowsApp : public CWinApp
  20. {
  21. public:
  22.     CGetRowsApp();
  23.  
  24. // Overrides
  25.     // ClassWizard generated virtual function overrides
  26.     //{{AFX_VIRTUAL(CGetRowsApp)
  27.     public:
  28.     virtual BOOL InitInstance();
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32.  
  33.     //{{AFX_MSG(CGetRowsApp)
  34.         // NOTE - the ClassWizard will add and remove member functions here.
  35.         //    DO NOT EDIT what you see in these blocks of generated code !
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39.  
  40.  
  41. /////////////////////////////////////////////////////////////////////////////
  42.