summaryrefslogtreecommitdiff
path: root/source3/include/rpc_svcctl.h
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1998-12-09 23:16:37 +0000
committerLuke Leighton <lkcl@samba.org>1998-12-09 23:16:37 +0000
commit3cc7e2936a69ba864817e1636439722933d8475e (patch)
treeb3417d5a4b0f8d1754510208fe7cbfb0b4ee4557 /source3/include/rpc_svcctl.h
parenta971a74717f1a9d8c966c623b735e079da2f67ae (diff)
downloadsamba-3cc7e2936a69ba864817e1636439722933d8475e.tar.gz
samba-3cc7e2936a69ba864817e1636439722933d8475e.tar.bz2
samba-3cc7e2936a69ba864817e1636439722933d8475e.zip
adding svcctl parsing code
(This used to be commit c6f2f58c74cd79d84ec4a7802882da07a9af80d4)
Diffstat (limited to 'source3/include/rpc_svcctl.h')
-rw-r--r--source3/include/rpc_svcctl.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/source3/include/rpc_svcctl.h b/source3/include/rpc_svcctl.h
index 451fdaa459..dc7d48d6b3 100644
--- a/source3/include/rpc_svcctl.h
+++ b/source3/include/rpc_svcctl.h
@@ -28,6 +28,8 @@
/* svcctl pipe */
#define SVC_OPEN_SC_MAN 0x0f
#define SVC_ENUM_SVCS_STATUS 0x0e
+#define SVC_QUERY_SVC_CONFIG 0x11
+#define SVC_OPEN_SERVICE 0x10
#define SVC_CLOSE 0x00
@@ -52,6 +54,45 @@ typedef struct r_svc_open_sc_man_info
} SVC_R_OPEN_SC_MAN;
+/* SVC_Q_OPEN_SERVICE */
+typedef struct q_svc_open_service_info
+{
+ POLICY_HND scman_pol;
+ UNISTR2 uni_srv_name; /* unicode server name starting with '\\' */
+ uint32 des_access; /* 0x80000004 - SC_MANAGER_xxxx */
+
+} SVC_Q_OPEN_SERVICE;
+
+/* SVC_R_OPEN_SERVICE */
+typedef struct r_svc_open_service_info
+{
+ POLICY_HND pol;
+ uint32 status; /* return status */
+
+} SVC_R_OPEN_SERVICE;
+
+
+/* QUERY_SERVICE_CONFIG */
+typedef struct query_service_config_info
+{
+ uint32 service_type;
+ uint32 start_type;
+ uint32 error_control;
+ uint32 ptr_bin_path_name;
+ uint32 ptr_load_order_grp;
+ uint32 tag_id;
+ uint32 ptr_dependencies;
+ uint32 ptr_service_start_name;
+ uint32 ptr_display_name;
+
+ UNISTR2 uni_bin_path_name;
+ UNISTR2 uni_load_order_grp;
+ UNISTR2 uni_dependencies;
+ UNISTR2 uni_service_start_name;
+ UNISTR2 uni_display_name;
+
+} QUERY_SERVICE_CONFIG;
+
/* SVC_STATUS */
typedef struct svc_status_info
{
@@ -98,6 +139,25 @@ typedef struct r_svc_enum_svcs_status_info
} SVC_R_ENUM_SVCS_STATUS;
+/* SVC_Q_QUERY_SVC_CONFIG */
+typedef struct q_svc_query_svc_cfg_info
+{
+ POLICY_HND pol;
+ uint32 buf_size;
+
+} SVC_Q_QUERY_SVC_CONFIG;
+
+
+/* SVC_R_QUERY_SVC_CONFIG */
+typedef struct r_svc_query_svc_cfg_info
+{
+ QUERY_SERVICE_CONFIG *cfg;
+ uint32 buf_size;
+ uint32 status; /* return status */
+
+} SVC_R_QUERY_SVC_CONFIG;
+
+
/* SVC_Q_CLOSE */
typedef struct q_svc_close_info
{