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

  1. // LST14_01.CPP - Implementation file for your Internet Server
  2. //    lst14_01 Extension
  3.  
  4. class CLst14_01Extension : public CHttpServer
  5. {
  6. public:
  7.  
  8.     UINT *m_pnCounter;
  9.  
  10.     CLst14_01Extension();
  11.     ~CLst14_01Extension();
  12.  
  13.     BOOL GetExtensionVersion(HSE_VERSION_INFO* pVer);
  14.  
  15.     // TODO: Add handlers for your commands here.
  16.     // For example:
  17.  
  18.     void Default(CHttpServerContext* pCtxt);
  19.        void Hello(CHttpServerContext* pCtxt);
  20.     void GetName(CHttpServerContext* pCtxt, LPCTSTR pName);
  21.  
  22.     DECLARE_PARSE_MAP()
  23. };
  24.  
  25.