Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//////////////////////////////////////////////////////////////////////////////
// CProxyIComponentWndEvent
template <class T> class CProxyIComponentWndEvent : public IConnectionPointImpl<T, &IID_IComponentWndEvent, CComDynamicUnkArray> { public:
//IComponentWndEvent : IDispatch
public: HRESULT Fire_OnClose() { T* pT = (T*)this; pT->Lock(); HRESULT ret; IUnknown** pp = m_vec.begin(); while (pp < m_vec.end()) { if (*pp != NULL) { IComponentWndEvent* pIComponentWndEvent = reinterpret_cast<IComponentWndEvent*>(*pp); ret = pIComponentWndEvent->OnClose(); } pp++; } pT->Unlock(); return ret; } };
|