Abc.cpp
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:0k
- // Abc.cpp : Implementation of CAbc
- #include "stdafx.h"
- #include "MyAbc.h"
- #include "Abc.h"
- /////////////////////////////////////////////////////////////////////////////
- // CAbc
- STDMETHODIMP CAbc::add(int a, int b, int *c)
- {
- AFX_MANAGE_STATE(AfxGetStaticModuleState())
- // TODO: Add your implementation code here
- *c=a+b;
- CString str;
- str.Format("WriteLog在接口中:%d",*c);
- AfxMessageBox(str);
- this->Fire_WriteLog(str.AllocSysString());
- return S_OK;
- }