91 lines
2.6 KiB
C
91 lines
2.6 KiB
C
|
// service.h: interface for the CGeneralService class.
|
||
|
//
|
||
|
// Copyright (c)1997-1999 Microsoft Corporation
|
||
|
//
|
||
|
//////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#if !defined(AFX_SERVICE_H__BD7570F7_9F0E_4C6B_B525_E078691B6D0E__INCLUDED_)
|
||
|
#define AFX_SERVICE_H__BD7570F7_9F0E_4C6B_B525_E078691B6D0E__INCLUDED_
|
||
|
|
||
|
#if _MSC_VER >= 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER >= 1000
|
||
|
|
||
|
#include "GenericClass.h"
|
||
|
|
||
|
/*
|
||
|
|
||
|
Class description
|
||
|
|
||
|
Naming:
|
||
|
|
||
|
CGeneralService stands for System Service.
|
||
|
|
||
|
Base class:
|
||
|
|
||
|
CGenericClass, because it is a class representing a WMI
|
||
|
object - its WMI class name is Sce_SystemService
|
||
|
|
||
|
Purpose of class:
|
||
|
|
||
|
(1) Implement Sce_SystemService WMI class.
|
||
|
|
||
|
Design:
|
||
|
|
||
|
(1) Almost trivial other than implementing necessary method as a concrete class
|
||
|
|
||
|
Use:
|
||
|
|
||
|
(1) Almost never used directly. Alway through the common interface defined by
|
||
|
CGenericClass.
|
||
|
|
||
|
*/
|
||
|
|
||
|
class CGeneralService : public CGenericClass
|
||
|
{
|
||
|
public:
|
||
|
CGeneralService (
|
||
|
ISceKeyChain *pKeyChain,
|
||
|
IWbemServices *pNamespace,
|
||
|
IWbemContext *pCtx = NULL
|
||
|
);
|
||
|
|
||
|
virtual ~CGeneralService ();
|
||
|
|
||
|
virtual HRESULT PutInst (
|
||
|
IWbemClassObject *pInst,
|
||
|
IWbemObjectSink *pHandler,
|
||
|
IWbemContext *pCtx
|
||
|
);
|
||
|
|
||
|
virtual HRESULT CreateObject (
|
||
|
IWbemObjectSink *pHandler,
|
||
|
ACTIONTYPE atAction
|
||
|
);
|
||
|
|
||
|
private:
|
||
|
|
||
|
HRESULT ConstructInstance (
|
||
|
IWbemObjectSink *pHandler,
|
||
|
CSceStore* pSceStore,
|
||
|
LPCWSTR wszLogStorePath,
|
||
|
LPCWSTR wszObjName,
|
||
|
BOOL bPostFilter);
|
||
|
|
||
|
HRESULT DeleteInstance (
|
||
|
IWbemObjectSink *pHandler,
|
||
|
CSceStore* pSceStore,
|
||
|
LPCWSTR wszObjName
|
||
|
);
|
||
|
|
||
|
HRESULT SaveSettingsToStore (
|
||
|
CSceStore* pSceStore,
|
||
|
LPCWSTR wszObjName,
|
||
|
DWORD Startup,
|
||
|
LPCWSTR wszSDDL
|
||
|
);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // !defined(AFX_SERVICE_H__BD7570F7_9F0E_4C6B_B525_E078691B6D0E__INCLUDED_)
|