- // 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("%d",*c);
- this->Fire_WriteLog(str.AllocSysString());
- return S_OK;
- }