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