mirror of https://github.com/tongzx/nt5src
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.
28 lines
608 B
28 lines
608 B
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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_
|