HTTPSVR.H
上传用户:btxinjin
上传日期:2007-01-04
资源大小:83k
文件大小:2k
源码类别:

Web服务器

开发平台:

Visual C++

  1. // HttpSvr.h : main header file for the HTTPSVR application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1997-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #ifndef __AFXWIN_H__
  13. #error include 'stdafx.h' before including this file for PCH
  14. #endif
  15. #include "resource.h"       // main symbols
  16. #define PORT_HTTP       80
  17. #define WSM_DOCHIT      (WM_USER+1)
  18. #define WSM_CGIDONE     (WM_USER+2)
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CHttpSvrApp:
  21. // See HttpSvr.cpp for the implementation of this class
  22. //
  23. class CHttpSvrApp : public CWinApp
  24. {
  25. public:
  26. void RegisterLogFile( void );
  27. CHttpSvrApp();
  28. ~CHttpSvrApp();
  29. CString         m_strDefSvr;
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CHttpSvrApp)
  33. public:
  34. virtual BOOL InitInstance();
  35. virtual BOOL OnIdle(LONG lCount);
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. //{{AFX_MSG(CHttpSvrApp)
  39. afx_msg void OnAppAbout();
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. // global helper routines.....
  44. void AddFile( CString& strPath, UINT uStr );
  45. void AddFile( CString& strPath, const CString& strFile);
  46. /////////////////////////////////////////////////////////////////////////////