home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 January / dppcpro0199a.iso / January / Fp98 / SDK / WebBot / simple / simple.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-18  |  969 b   |  38 lines

  1. //
  2. // Copyright (c) 1996 Vermeer Technologies, Inc., a wholly owned
  3. //               subsidiary of Microsoft Corp.  All Rights Reserved
  4. //
  5. // simple.h : main header file for the SIMPLE DLL
  6. //
  7.  
  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. // CSimpleApp
  16. // See simple.cpp for the implementation of this class
  17. //
  18.  
  19. class CSimpleApp : public CWinApp
  20. {
  21. public:
  22.     CSimpleApp();
  23.  
  24. // Overrides
  25.     // ClassWizard generated virtual function overrides
  26.     //{{AFX_VIRTUAL(CSimpleApp)
  27.     //}}AFX_VIRTUAL
  28.  
  29.     //{{AFX_MSG(CSimpleApp)
  30.         // NOTE - the ClassWizard will add and remove member functions here.
  31.         //    DO NOT EDIT what you see in these blocks of generated code !
  32.     //}}AFX_MSG
  33.     DECLARE_MESSAGE_MAP()
  34. };
  35.  
  36.  
  37. /////////////////////////////////////////////////////////////////////////////
  38.