home *** CD-ROM | disk | FTP | other *** search
- // IISSDK.cpp : Implementation of CIISSDK
- #include "stdafx.h"
- #include "CPP_Simple.h"
- #include "IISSDK.h"
-
- /////////////////////////////////////////////////////////////////////////////
- // CIISSDK
-
-
- STDMETHODIMP CIISSDK::HelloText(BSTR * pbstrOut)
- {
- // This method simply returns a BSTR
- CComBSTR bstrTemp("Hello, World!");
-
- // Return the m_str member of bstrTemp
- *pbstrOut = bstrTemp.Detach();
-
- return S_OK;
- }
-