SERWEB.H
上传用户:areilwang
上传日期:2007-01-04
资源大小:375k
文件大小:1k
源码类别:

Web服务器

开发平台:

WINDOWS

  1. // serweb.h : main header file for the SERWEB application
  2. //
  3. #ifndef __AFXWIN_H__
  4. #error include 'stdafx.h' before including this file for PCH
  5. #endif
  6. #include "resource.h" // main symbols
  7. #include "winsock.h"
  8. #define WS_VERSION_REQD 0x0101
  9. #define WS_VERSION_MAJOR HIBYTE(WS_VERSION_REQD)
  10. #define WS_VERSION_MINOR LOBYTE(WS_VERSION_REQD)
  11. #define MIN_SOCKETS_REQD 3
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CSerwebApp:
  14. // See serweb.cpp for the implementation of this class
  15. //
  16. class CSerwebApp : public CWinApp
  17. {
  18. private:
  19.   char buf[100]; 
  20.  
  21. public:
  22. int HowManyClients;          // How many people can access us at the same time ??
  23. CSerwebApp();
  24. // Overrides
  25. virtual BOOL InitInstance();
  26. virtual BOOL ExitInstance();
  27. // Implementation
  28. //{{AFX_MSG(CSerwebApp)
  29. afx_msg void OnAppAbout();
  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. /////////////////////////////////////////////////////////////////////////////