VC++实现COM事件接收器

感谢作者sinall的文章,原文的博客地址为:

http://blog.csdn.net/sinall/article/details/400636


1、给程序添加ATL支持。

      右键->New ATL Object

2、实现IDispEventImpl 接口。

//EventSink.h

#import "../Server/Debug/Server.exe" raw_interface_only,no_namespace,named_guids

class  CEventSink : 
 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)();
};

//EventSink.cpp

#include "stdafx.h"
#include "EventSink.h"

STDMETHODIMP CEventSink::cbFunc01()
{
 AfxMessageBox("called by Event from dll Server !");

 return S_OK;
}
3、连接对象
// ClientDlg.cpp : implementation file
//
#include "EventSink.h"

void CClientDlg::OnButton1() 
{
 // 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();
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值