// 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()
};


/////////////////////////////////////////////////////////////////////////////
