Myfirst.cpp
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // Myfirst.cpp : Implementation of CMyfirst
  2. #include "stdafx.h"
  3. #include "Myaddinter.h"
  4. #include "Myfirst.h"
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CMyfirst
  7. STDMETHODIMP CMyfirst::add(int a, int b, int *c)
  8. {
  9. // TODO: Add your implementation code here
  10. return S_OK;
  11. }
  12. STDMETHODIMP CMyfirst::sub(int a, int b, int *c)
  13. {
  14. // TODO: Add your implementation code here
  15. return S_OK;
  16. }
  17. STDMETHODIMP CMyfirst::hello(BSTR name, BSTR* result)
  18. {
  19. *result=::SysAllocString(L"hello the world");
  20. return S_OK;
  21. }