MyVariant.cpp
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:0k
源码类别:
ActiveX/DCOM/ATL
开发平台:
Visual C++
- // MyVariant.cpp : Implementation of CMyVariant
- #include "stdafx.h"
- #include "DemoVariant.h"
- #include "MyVariant.h"
- /////////////////////////////////////////////////////////////////////////////
- // CMyVariant
- STDMETHODIMP CMyVariant::add(VARIANT a, VARIANT b, VARIANT *c)
- {
- AFX_MANAGE_STATE(AfxGetStaticModuleState())
- // TODO: Add your implementation code here
- c->vt=VT_I4;
- c->lVal=a.lVal+b.lVal;
- return S_OK;
- }