MyAbc.cpp
Upload User: weisheen
Upload Date: 2022-07-09
Package Size: 19390k
Code Size: 0k
Development Platform:

Visual C++

  1. // MyAbc.cpp : Implementation of CMyAbc
  2. #include "stdafx.h"
  3. #include "FirstDemo.h"
  4. #include "MyAbc.h"
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CMyAbc
  7. STDMETHODIMP CMyAbc::add(int a, int b, int* c)
  8. {
  9. *c=a+b;
  10. return S_OK;
  11. }
  12. STDMETHODIMP CMyAbc::hello(BSTR name, BSTR* result)
  13. {
  14. *result=::SysAllocString(L"hello the world");
  15. return S_OK;
  16. }