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.
31 lines
828 B
31 lines
828 B
// ServiceUtil.h: interface for the CServiceUtil class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_SERVICEUTIL_H__DA56425C_95C0_478B_A193_34C4758AAD23__INCLUDED_)
|
|
#define AFX_SERVICEUTIL_H__DA56425C_95C0_478B_A193_34C4758AAD23__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
class CServiceUtil
|
|
{
|
|
public:
|
|
CServiceUtil();
|
|
virtual ~CServiceUtil();
|
|
|
|
// Implementation
|
|
public:
|
|
HRESULT StopService( LPCTSTR szServiceName );
|
|
HRESULT RestoreServiceState( LPCTSTR szServiceName );
|
|
|
|
// Attributes
|
|
protected:
|
|
ENUM_SERVICE_STATUS *m_pstServiceStatus;
|
|
DWORD m_dwNumServices;
|
|
DWORD m_dwCurrentState;
|
|
|
|
};
|
|
|
|
#endif // !defined(AFX_SERVICEUTIL_H__DA56425C_95C0_478B_A193_34C4758AAD23__INCLUDED_)
|