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.
 
 
 
 
 
 

39 lines
821 B

#ifndef __FCONPROV_H__
#define __FCONPROV_H__
#include <wbemcli.h>
#include <wbemprov.h>
#include <unk.h>
/*************************************************************************
CFwdConsProv
**************************************************************************/
class CFwdConsProv
: public CUnkBase<IWbemEventConsumerProvider,&IID_IWbemEventConsumerProvider>
{
public:
CFwdConsProv( CLifeControl* pCtl )
: CUnkBase< IWbemEventConsumerProvider,
&IID_IWbemEventConsumerProvider>( pCtl ) {}
STDMETHOD(FindConsumer)( IWbemClassObject* pLogicalConsumer,
IWbemUnboundObjectSink** ppConsumer );
static HRESULT InitializeModule();
static void UninitializeModule();
};
#endif // __FCONPROV_H__