home *** CD-ROM | disk | FTP | other *** search
/ ActiveX Programming Unleashed CD / AXU.iso / source / chap14 / lst14_03 / lst14_03.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-19  |  629 b   |  26 lines

  1. // LST14_03.CPP - Implementation file for your Internet Server
  2. //    lst14_03 Extension
  3.  
  4. class CLst14_03Extension : public CHttpServer
  5. {
  6. protected:
  7.  
  8.     UINT                *m_pnCounter;
  9.     LPCRITICAL_SECTION    m_lpCriticalExtension;
  10.  
  11.     void ThreadPool();
  12.     void LeavePool();
  13.  
  14. public:
  15.     CLst14_03Extension();
  16.     ~CLst14_03Extension();
  17.  
  18.     BOOL GetExtensionVersion(HSE_VERSION_INFO* pVer);
  19.     int CallFunction(CHttpServerContext* pCtxt,LPTSTR pszQuery, LPTSTR pszCommand);
  20.  
  21.     void Enterance(CHttpServerContext* pCtxt,LPTSTR pszQuery);
  22.     LPTSTR FindNameValue(LPCTSTR lpszString,LPCTSTR lpszName,TCHAR cSeparator,TCHAR cDelimiter);
  23.  
  24. };
  25.  
  26.