home *** CD-ROM | disk | FTP | other *** search
- // LST14_01.CPP - Implementation file for your Internet Server
- // lst14_01 Extension
-
- class CLst14_01Extension : public CHttpServer
- {
- public:
-
- UINT *m_pnCounter;
-
- CLst14_01Extension();
- ~CLst14_01Extension();
-
- BOOL GetExtensionVersion(HSE_VERSION_INFO* pVer);
-
- // TODO: Add handlers for your commands here.
- // For example:
-
- void Default(CHttpServerContext* pCtxt);
- void Hello(CHttpServerContext* pCtxt);
- void GetName(CHttpServerContext* pCtxt, LPCTSTR pName);
-
- DECLARE_PARSE_MAP()
- };
-
-