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.
31 lines
563 B
31 lines
563 B
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// SCM.H
|
|
//
|
|
// Microsoft Confidential
|
|
// Copyright (c) Microsoft Corporation 1998
|
|
// All rights reserved
|
|
//
|
|
// Service Control Manager function prototypes.
|
|
//
|
|
// 9/98 - Jason Cohen (JCOHEN)
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _SCM_H_
|
|
#define _SCM_H_
|
|
|
|
|
|
// Internal include file(s).
|
|
//
|
|
#include <windows.h>
|
|
|
|
|
|
// External function prototypes.
|
|
//
|
|
BOOL ServiceStart(LPCTSTR);
|
|
BOOL ServiceRunning(LPCTSTR);
|
|
|
|
|
|
#endif // _SCM_H_
|