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.
41 lines
626 B
41 lines
626 B
/*++
|
|
|
|
Copyright (c) 1998 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
servctrl.h
|
|
|
|
Abstract:
|
|
|
|
SIS Groveler service control include file
|
|
|
|
Authors:
|
|
|
|
John Douceur, 1998
|
|
|
|
Environment:
|
|
|
|
User Mode
|
|
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
#ifndef _INC_SERVCTRL
|
|
|
|
#define _INC_SERVCTRL
|
|
|
|
#define SERVICE_CONTROL_VOLSCAN 0x00000080
|
|
#define SERVICE_CONTROL_FOREGROUND 0x000000a0
|
|
#define SERVICE_CONTROL_BACKGROUND 0x000000c0
|
|
#define SERVICE_CONTROL_RESERVED 0x000000e0
|
|
|
|
#define SERVICE_CONTROL_COMMAND_MASK 0xffffffe0
|
|
#define SERVICE_CONTROL_PARTITION_MASK 0x0000001f
|
|
|
|
#define SERVICE_CONTROL_ALL_PARTITIONS 0x0000001f
|
|
|
|
#endif /* _INC_SERVCTRL */
|