SERWEB.H
资源名称:serweb.zip [点击查看]
上传用户:areilwang
上传日期:2007-01-04
资源大小:375k
文件大小:1k
源码类别:
Web服务器
开发平台:
WINDOWS
- // serweb.h : main header file for the SERWEB application
- //
- #ifndef __AFXWIN_H__
- #error include 'stdafx.h' before including this file for PCH
- #endif
- #include "resource.h" // main symbols
- #include "winsock.h"
- #define WS_VERSION_REQD 0x0101
- #define WS_VERSION_MAJOR HIBYTE(WS_VERSION_REQD)
- #define WS_VERSION_MINOR LOBYTE(WS_VERSION_REQD)
- #define MIN_SOCKETS_REQD 3
- /////////////////////////////////////////////////////////////////////////////
- // CSerwebApp:
- // See serweb.cpp for the implementation of this class
- //
- class CSerwebApp : public CWinApp
- {
- private:
- char buf[100];
- public:
- int HowManyClients; // How many people can access us at the same time ??
- CSerwebApp();
- // Overrides
- virtual BOOL InitInstance();
- virtual BOOL ExitInstance();
- // Implementation
- //{{AFX_MSG(CSerwebApp)
- afx_msg void OnAppAbout();
- // NOTE - the ClassWizard will add and remove member functions here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////