home *** CD-ROM | disk | FTP | other *** search
- // LST14_03.CPP - Implementation file for your Internet Server
- // lst14_03 Extension
-
- class CLst14_03Extension : public CHttpServer
- {
- protected:
-
- UINT *m_pnCounter;
- LPCRITICAL_SECTION m_lpCriticalExtension;
-
- void ThreadPool();
- void LeavePool();
-
- public:
- CLst14_03Extension();
- ~CLst14_03Extension();
-
- BOOL GetExtensionVersion(HSE_VERSION_INFO* pVer);
- int CallFunction(CHttpServerContext* pCtxt,LPTSTR pszQuery, LPTSTR pszCommand);
-
- void Enterance(CHttpServerContext* pCtxt,LPTSTR pszQuery);
- LPTSTR FindNameValue(LPCTSTR lpszString,LPCTSTR lpszName,TCHAR cSeparator,TCHAR cDelimiter);
-
- };
-
-