windows-nt/Source/XPSP1/NT/net/diagnostics/wmi/dglogs/dglogscp.h

40 lines
964 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
#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