40 lines
964 B
C
40 lines
964 B
C
|
#ifndef _DGLOGSCP_H_
|
||
|
#define _DGLOGSCP_H_
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
template <class T>
|
||
|
class CProxy_IDglogsComEvents : public IConnectionPointImpl<T, &DIID__IDglogsComEvents, CComDynamicUnkArray>
|
||
|
{
|
||
|
//Warning this class may be recreated by the wizard.
|
||
|
public:
|
||
|
VOID Fire_ProgressReport(BSTR * pbstrMsg, LONG nPercentDone)
|
||
|
{
|
||
|
T* pT = static_cast<T*>(this);
|
||
|
int nConnectionIndex;
|
||
|
CComVariant* pvars = new CComVariant[2];
|
||
|
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)
|
||
|
{
|
||
|
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
|