#ifndef _DGLOGSCP_H_ #define _DGLOGSCP_H_ template class CProxy_IDglogsComEvents : public IConnectionPointImpl { //Warning this class may be recreated by the wizard. public: VOID Fire_ProgressReport(BSTR * pbstrMsg, LONG nPercentDone) { T* pT = static_cast(this); int nConnectionIndex; CComVariant* pvars = new CComVariant[2]; int nConnections = m_vec.GetSize(); for (nConnectionIndex = 0; nConnectionIndex < nConnections; nConnectionIndex++) { pT->Lock(); CComPtr sp = m_vec.GetAt(nConnectionIndex); pT->Unlock(); IDispatch* pDispatch = reinterpret_cast(sp.p); if (pDispatch != NULL) { pvars[1] = (BSTR )*pbstrMsg; pvars[0] = nPercentDone; DISPPARAMS disp = { pvars, NULL, 2, 0 }; pDispatch->Invoke(0x1, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_METHOD, &disp, NULL, NULL, NULL); } } delete[] pvars; } }; #endif