📄 ex31a.h
字号:
// EX31A.H - Header file for your Internet Server// ex31a Extension#include "resource.h"class CEx31aExtension : public CHttpServer{public: CEx31aExtension(); ~CEx31aExtension();private: CCriticalSection m_cs; int m_nTotalPizzaOrders;// 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(CEx31aExtension) public: virtual BOOL GetExtensionVersion(HSE_VERSION_INFO* pVer); virtual LPCTSTR GetTitle() const; //}}AFX_VIRTUAL // 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(CEx31aExtension) //}}AFX_MSG};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -