home *** CD-ROM | disk | FTP | other *** search
- #ifndef _DEVCMDCP_H_
- #define _DEVCMDCP_H_
- #include "devcmd.h"
-
- template <class T>
- class CProxy_ICommandWindowEvents : public IConnectionPointImpl<T, &DIID__ICommandWindowEvents, CComDynamicUnkArray>
- {
- //Warning this class may be recreated by the wizard.
- public:
- HRESULT Fire_OnClose()
- {
- CComVariant varResult;
- T* pT = static_cast<T*>(this);
- int nConnectionIndex;
- int nConnections = m_vec.GetSize();
-
- for (nConnectionIndex = 0; nConnectionIndex < nConnections; nConnectionIndex++)
- {
- pT->Lock();
- CComPtr<IUnknown> sp = m_vec.GetAt(nConnectionIndex);
- pT->Unlock();
- IDispatch* pDispatch = reinterpret_cast<IDispatch*>(sp.p);
- if (pDispatch != NULL)
- {
- VariantClear(&varResult);
- DISPPARAMS disp = { NULL, NULL, 0, 0 };
- pDispatch->Invoke(0x1, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_METHOD, &disp, &varResult, NULL, NULL);
- }
- }
- return varResult.scode;
-
- }
- };
- #endif