Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

IDispEventSimpleImpl::DispEventAdvise

 

Call this method to establish a connection with the event source represented by pUnk.


      HRESULT DispEventAdvise(
   IUnknown* pUnk 
   const IID* piid 
);

pUnk

[in] A pointer to the IUnknown interface of the event source object.

piid

A pointer to the IID of the event source object.

S_OK or any failure HRESULT value.

Subsequently, events fired from pUnk will be routed to handlers in your class by way of the event sink map.

System_CAPS_noteNote

If your class derives from multiple IDispEventSimpleImpl classes, you will need to disambiguate calls to this method by scoping the call with the particular base class you are interested in.

DispEventAdvise establishes a connection with the event source specified in pdiid.

Requirements

Header: atlcom.h

Show: