diff options
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/doserr.h | 1 | ||||
-rw-r--r-- | source3/include/rpc_svcctl.h | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/source3/include/doserr.h b/source3/include/doserr.h index 259eafc45f..60a3c335ec 100644 --- a/source3/include/doserr.h +++ b/source3/include/doserr.h @@ -186,6 +186,7 @@ #define WERR_IO_PENDING W_ERROR(997) #define WERR_CAN_NOT_COMPLETE W_ERROR(1003) #define WERR_NO_SUCH_SERVICE W_ERROR(1060) +#define WERR_INVALID_SERVICE_CONTROL W_ERROR(1052) #define WERR_INVALID_SECURITY_DESCRIPTOR W_ERROR(1338) #define WERR_SERVER_UNAVAILABLE W_ERROR(1722) #define WERR_INVALID_FORM_NAME W_ERROR(1902) diff --git a/source3/include/rpc_svcctl.h b/source3/include/rpc_svcctl.h index 6fcfd6f52d..fd24ec7ca9 100644 --- a/source3/include/rpc_svcctl.h +++ b/source3/include/rpc_svcctl.h @@ -72,6 +72,11 @@ #define SVCCTL_ACCEPT_HARDWAREPROFILECHANGE 0x00000020 #define SVCCTL_ACCEPT_POWEREVENT 0x00000040 +/* Service Controls */ + +#define SVCCTL_CONTROL_STOP 0x00000001 +#define SVCCTL_CONTROL_PAUSE 0x00000002 +#define SVCCTL_CONTROL_CONTINUE 0x00000003 /* utility structures for RPCs */ |