- // MyAbc.cpp : Implementation of CMyAbc
- #include "stdafx.h"
- #include "EventDemo.h"
- #include "MyAbc.h"
- /////////////////////////////////////////////////////////////////////////////
- // CMyAbc
- STDMETHODIMP CMyAbc::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_OnLog(str.AllocSysString());
- return S_OK;
- }