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

  1. #ifndef __FCONPROV_H__
  2. #define __FCONPROV_H__
  3. #include <wbemcli.h>
  4. #include <wbemprov.h>
  5. #include <unk.h>
  6. /*************************************************************************
  7. CFwdConsProv
  8. **************************************************************************/
  9. class CFwdConsProv
  10. : public CUnkBase<IWbemEventConsumerProvider,&IID_IWbemEventConsumerProvider>
  11. {
  12. public:
  13. CFwdConsProv( CLifeControl* pCtl )
  14. : CUnkBase< IWbemEventConsumerProvider,
  15. &IID_IWbemEventConsumerProvider>( pCtl ) {}
  16. STDMETHOD(FindConsumer)( IWbemClassObject* pLogicalConsumer,
  17. IWbemUnboundObjectSink** ppConsumer );
  18. static HRESULT InitializeModule();
  19. static void UninitializeModule();
  20. };
  21. #endif // __FCONPROV_H__