MyAbc.cpp
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:0k
- // MyAbc.cpp : Implementation of CMyAbc
- #include "stdafx.h"
- #include "SmartPtrDemo.h"
- #include "MyAbc.h"
- /////////////////////////////////////////////////////////////////////////////
- // CMyAbc
- STDMETHODIMP CMyAbc::Hello(BSTR name, BSTR *bstrResult)
- {
- AFX_MANAGE_STATE(AfxGetStaticModuleState())
- // TODO: Add your implementation code here
- CString strTemp(name);
- ::SysFreeString(name);
- strTemp="Hello: "+strTemp;
- *bstrResult=strTemp.AllocSysString();
- return S_OK;
- }