From c9f6a58109bb0b7a26e8a0b8ef81bbff74a066c9 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 8 Jan 2009 15:43:49 +0100 Subject: svcctl: remove redundant SERVICE_STATE_* defines. Guenther --- librpc/idl/svcctl.idl | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'librpc') diff --git a/librpc/idl/svcctl.idl b/librpc/idl/svcctl.idl index f804f91730..5f04d91f17 100644 --- a/librpc/idl/svcctl.idl +++ b/librpc/idl/svcctl.idl @@ -71,10 +71,6 @@ import "misc.idl", "security.idl"; const int SERVICE_TYPE_WIN32_SHARE_PROCESS = 0x20; const int SERVICE_TYPE_WIN32=SERVICE_TYPE_WIN32_OWN_PROCESS|SERVICE_TYPE_WIN32_SHARE_PROCESS; - const int SERVICE_STATE_ACTIVE = 0x01; - const int SERVICE_STATE_INACTIVE = 0x02; - const int SERVICE_STATE_ALL = 0x03; - typedef [public,bitmap32bit] bitmap { SV_TYPE_WORKSTATION = 0x00000001, SV_TYPE_SERVER = 0x00000002, @@ -266,9 +262,9 @@ import "misc.idl", "security.idl"; /* Function 0x0e */ typedef [v1_enum] enum { - SVCCTL_STATE_ACTIVE = 0x00000001, - SVCCTL_STATE_INACTIVE = 0x00000002, - SVCCTL_STATE_ALL = ( SVCCTL_STATE_ACTIVE | SVCCTL_STATE_INACTIVE ) + SERVICE_STATE_ACTIVE = 0x00000001, + SERVICE_STATE_INACTIVE = 0x00000002, + SERVICE_STATE_ALL = ( SERVICE_STATE_ACTIVE | SERVICE_STATE_INACTIVE ) } svcctl_ServiceState; WERROR svcctl_EnumServicesStatusW( -- cgit