29 lines
608 B
C
29 lines
608 B
C
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 1996-1998 Microsoft Corporation
|
|
//
|
|
// Module Name:
|
|
// StopService.h
|
|
//
|
|
// Abstract:
|
|
// Declaration of functions to start and stop services.
|
|
//
|
|
// Implementation File:
|
|
// StopService.cpp
|
|
//
|
|
// Author:
|
|
// C. Brent Thomas (a-brentt) 1 April 1998
|
|
//
|
|
// Revision History:
|
|
//
|
|
// Notes:
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __STOPSERVICE_H_
|
|
#define __STOPSERVICE_H_
|
|
|
|
BOOL StopService( IN LPCWSTR pwszServiceName );
|
|
|
|
#endif // __STOPSERVICE_H_
|