扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
1、给程序添加ATL支持。
右键->New ATL Object 2、实现IDispEventImpl 接口。 //EventSink.h #import "..\Server\Debug\Server.exe" raw_interface_only,no_namespace,named_guids class CEventSink : //EventSink.cpp #include "stdafx.h" STDMETHODIMP CEventSink::cbFunc01() return S_OK; 3、连接对象 // ClientDlg.cpp : implementation file void CClientDlg::OnButton1()
public IDispEventImpl<0, CEventSink,&DIID__IObjEvents,&LIBID_SERVERLib, 1, 0>
{
public:
CEventSink()
{
}
public:
BEGIN_SINK_MAP(CEventSink)
SINK_ENTRY_EX(0, DIID__IObjEvents, 1, cbFunc01)
END_SINK_MAP()
STDMETHOD(cbFunc01)();
};
#include "EventSink.h"
{
AfxMessageBox("called by Event from dll Server !");
}
//
#include "EventSink.h"
{
// TODO: Add your control notification handler code here
::CoInitialize(NULL);
{
IObjPtr pObj;
CEventSink *pEventSink= new CEventSink;
pObj.CreateInstance(__uuidof(Obj));
pEventSink->DispEventAdvise(pObj);
pObj->Func01();
pEventSink->DispEventUnadvise(pObj);
delete pEventSink;
}
::CoUninitialize();
}
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者