- // MyAdd.cpp : Implementation of CMyAdd
- #include "stdafx.h"
- #include "ExautoDemo.h"
- #include "MyAdd.h"
- /////////////////////////////////////////////////////////////////////////////
- // CMyAdd
- STDMETHODIMP CMyAdd::add(int a, int b, int *c)
- {
- // TODO: Add your implementation code here
- *c=a+b;
- return S_OK;
- }