Visual Studio 2010 - Visual C++
AtlAdvise
Creates a connection between an object's connection point and a client's sink.
HRESULT AtlAdvise( IUnknown* pUnkCP, IUnknown* pUnk, const IID& iid, LPDWORD pdw );
Parameters
Return Value
A standard HRESULT value.
Remarks
The sink implements the outgoing interface supported by the connection point. The client uses the pdw cookie to remove the connection by passing it to AtlUnadvise.
Example
Visual C++
LPUNKNOWN m_pSourceUnk; LPUNKNOWN m_pSinkUnk; DWORD m_dwCustCookie; // create source object HRESULT hr = CoCreateInstance (CLSID_MyComponent, NULL, CLSCTX_ALL, IID_IUnknown, (LPVOID*)&m_pSourceUnk); ATLASSERT(SUCCEEDED(hr)); // Create sink object. CMySink is a CComObjectRootEx-derived class // that implements the event interface methods. CComObject<CMySink>* pSinkClass; CComObject<CMySink>::CreateInstance(&pSinkClass); hr = pSinkClass->QueryInterface (IID_IUnknown, (LPVOID*)&m_pSinkUnk); ATLASSERT(SUCCEEDED(hr)); hr = AtlAdvise (m_pSourceUnk, m_pSinkUnk, __uuidof(_IMyComponentEvents), &m_dwCustCookie); ATLASSERT(SUCCEEDED(hr));
Requirements
Header: atlbase.h
See Also