home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 32 / IOPROG_32.ISO / SOFT / SqlEval7 / devtools / samples / ODBC / loaddata / loaddata.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-20  |  1.2 KB  |  41 lines

  1. // LoadData.h : main header file for the LOADDATA application
  2. //
  3. // This file is part of Microsoft SQL Server online documentation.
  4. // Copyright (C) 1992-1997 Microsoft Corporation. All rights reserved.
  5. //
  6. // This source code is an intended supplement to the Microsoft SQL
  7. // Server online references and related electronic documentation.
  8. #ifndef __AFXWIN_H__
  9.     #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11.  
  12. #include "resource.h"        // main symbols
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CLoadDataApp:
  16. // See LoadData.cpp for the implementation of this class
  17. /////////////////////////////////////////////////////////////////////////////
  18. class CLoadDataApp : public CWinApp
  19. {
  20. public:
  21.     CLoadDataApp();
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CLoadDataApp)
  26.     public:
  27.     virtual BOOL InitInstance();
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31.  
  32.     //{{AFX_MSG(CLoadDataApp)
  33.         // NOTE - the ClassWizard will add and remove member functions here.
  34.         //    DO NOT EDIT what you see in these blocks of generated code !
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38.  
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41.