- // IMyObj.cpp : Implementation of CIMyObj
- #include "stdafx.h"
- #include "IUnknownDemo.h"
- #include "IMyObj.h"
- /////////////////////////////////////////////////////////////////////////////
- // CIMyObj
- STDMETHODIMP CIMyObj::add(int a, int b, int *c)
- {
- *c=a+b;
- return S_OK;
- }
- STDMETHODIMP CIMyObj::hello(BSTR name, BSTR* result)
- {
- *result=::SysAllocString(L"hello the world");
- return S_OK;
- }