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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // MyAbc.cpp : Implementation of CMyAbc
  2. #include "stdafx.h"
  3. #include "DemoIUnknown.h"
  4. #include "MyAbc.h"
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CMyAbc
  7. STDMETHODIMP CMyAbc::SetLog(IUnknown *pTools)
  8. {
  9. AFX_MANAGE_STATE(AfxGetStaticModuleState())
  10. // TODO: Add your implementation code here
  11. this->pMyTools=pTools;
  12. return S_OK;
  13. }
  14. STDMETHODIMP CMyAbc::add(int a, int b, int *c)
  15. {
  16. AFX_MANAGE_STATE(AfxGetStaticModuleState())
  17. // TODO: Add your implementation code here
  18. *c=a+b;
  19. CString str;
  20. str.Format("this result is:%d",*c);
  21. if(this->pMyTools!=NULL)
  22. {
  23. ILog* pLog=NULL;
  24. this->pMyTools->QueryInterface(IID_ILog,(void **)&pLog);
  25. pLog->writeLog(str.AllocSysString());
  26. pLog->Release();
  27. }
  28. else
  29. *c=0;
  30. return S_OK;
  31. }