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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // MyVariant.cpp : Implementation of CMyVariant
  2. #include "stdafx.h"
  3. #include "ExVariant.h"
  4. #include "MyVariant.h"
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CMyVariant
  7. STDMETHODIMP CMyVariant::add(VARIANT a, VARIANT b, VARIANT *c)
  8. {
  9. AFX_MANAGE_STATE(AfxGetStaticModuleState())
  10. // TODO: Add your implementation code here
  11. c->vt=VT_I4;
  12. c->lVal=a.lVal+b.lVal;
  13. return S_OK;
  14. }