#if !defined(AFX_MYEX34A_H__05B780BE_F3B6_4AAA_BBF2_8B9E51E31DC6__INCLUDED_)
#define AFX_MYEX34A_H__05B780BE_F3B6_4AAA_BBF2_8B9E51E31DC6__INCLUDED_

// MYEX34A.H - Header file for your Internet Server
//    myex34a Extension

#include "resource.h"

class CMyex34aExtension : public CHttpServer
{
public:
	CMyex34aExtension();
	~CMyex34aExtension();

// Overrides
	// ClassWizard generated virtual function overrides
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//{{AFX_VIRTUAL(CMyex34aExtension)
	public:
	virtual BOOL GetExtensionVersion(HSE_VERSION_INFO* pVer);
	virtual LPCTSTR GetTitle() const;
	//}}AFX_VIRTUAL
	// virtual BOOL TerminateExtension(DWORD dwFlags);

	// TODO: Add handlers for your commands here.
	// For example:

	void Default(CHttpServerContext* pCtxt);
	void ConfirmOrder(CHttpServerContext* pCtxt, LPCTSTR pstrName);
	void ProcessPizzaForm(CHttpServerContext* pCtxt, LPCTSTR pstrName,
		LPCTSTR pstrAddr, int nQuantity, LPCTSTR pstrSize, LPCTSTR pstrTop1,
		LPCTSTR pstrTop2, LPCTSTR pstrTop3, LPCTSTR pstrTop4);
	void ProcessTimesheet(CHttpServerContext* pCtxt, int nPeriod,
		LPCTSTR pstrEmployee, double dHours, int nJob);
	DECLARE_PARSE_MAP()

	//{{AFX_MSG(CMyex34aExtension)
	//}}AFX_MSG
private:
	int m_nTotalPizzaOrders;
	CCriticalSection m_cs;
};


//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_MYEX34A_H__05B780BE_F3B6_4AAA_BBF2_8B9E51E31DC6__INCLUDED)

