home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 9 / IOPROG_9.ISO / contrib / iis4 / iis4_07.cab / IISSDK.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-06  |  433 b   |  20 lines

  1. // IISSDK.cpp : Implementation of CIISSDK
  2. #include "stdafx.h"
  3. #include "CPP_Simple.h"
  4. #include "IISSDK.h"
  5.  
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CIISSDK
  8.  
  9.  
  10. STDMETHODIMP CIISSDK::HelloText(BSTR * pbstrOut)
  11. {
  12.     // This method simply returns a BSTR
  13.     CComBSTR bstrTemp("Hello, World!");
  14.  
  15.     // Return the m_str member of bstrTemp
  16.     *pbstrOut = bstrTemp.Detach();
  17.  
  18.     return S_OK;
  19. }
  20.