summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-01-09 16:22:03 +0100
committerGünther Deschner <gd@samba.org>2009-01-09 17:08:18 +0100
commit03611c6c9d84b2654481dc51ce2af2665205e755 (patch)
tree157e27330ced2a55c42324964fa2bed53663dcd7 /source3/include
parent2d218c93cd18f8c26fc0f549f7d059cf4b139893 (diff)
downloadsamba-03611c6c9d84b2654481dc51ce2af2665205e755.tar.gz
samba-03611c6c9d84b2654481dc51ce2af2665205e755.tar.bz2
samba-03611c6c9d84b2654481dc51ce2af2665205e755.zip
s3-svcctl: remove old marshalling of svcctl_EnumServicesStatusW.
Guenther
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/proto.h10
-rw-r--r--source3/include/rpc_svcctl.h28
2 files changed, 0 insertions, 38 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index 96b2e26d30..ff79803a31 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -5453,10 +5453,6 @@ WERROR rpccli_spoolss_rffpcnex(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
/* The following definitions come from rpc_client/cli_svcctl.c */
-WERROR rpccli_svcctl_enumerate_services( struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
- POLICY_HND *hSCM, uint32 type, uint32 state,
- uint32 *returned, ENUM_SERVICES_STATUS **service_array );
-
/* The following definitions come from rpc_client/init_lsa.c */
void init_lsa_String(struct lsa_String *name, const char *s);
@@ -6156,11 +6152,6 @@ bool convert_port_data_1( NT_PORT_DATA_1 *port1, RPC_BUFFER *buf ) ;
/* The following definitions come from rpc_parse/parse_svcctl.c */
-bool svcctl_io_enum_services_status( const char *desc, ENUM_SERVICES_STATUS *enum_status, RPC_BUFFER *buffer, int depth );
-uint32 svcctl_sizeof_enum_services_status( ENUM_SERVICES_STATUS *status );
-bool svcctl_io_q_enum_services_status(const char *desc, SVCCTL_Q_ENUM_SERVICES_STATUS *q_u, prs_struct *ps, int depth);
-bool svcctl_io_r_enum_services_status(const char *desc, SVCCTL_R_ENUM_SERVICES_STATUS *r_u, prs_struct *ps, int depth);
-
/* The following definitions come from rpc_server/srv_eventlog.c */
NTSTATUS rpc_eventlog2_init(void);
@@ -6398,7 +6389,6 @@ NTSTATUS rpc_svcctl2_init(void);
/* The following definitions come from rpc_server/srv_svcctl_nt.c */
bool init_service_op_table( void );
-WERROR _svcctl_enum_services_status(pipes_struct *p, SVCCTL_Q_ENUM_SERVICES_STATUS *q_u, SVCCTL_R_ENUM_SERVICES_STATUS *r_u);
/* The following definitions come from rpcclient/cmd_dfs.c */
diff --git a/source3/include/rpc_svcctl.h b/source3/include/rpc_svcctl.h
index b12cecb56c..9b5859b07a 100644
--- a/source3/include/rpc_svcctl.h
+++ b/source3/include/rpc_svcctl.h
@@ -45,33 +45,5 @@
#define SVCCTL_OPEN_SCMANAGER_A 0x1b
*/
-/* utility structures for RPCs */
-
-typedef struct {
- UNISTR servicename;
- UNISTR displayname;
- struct SERVICE_STATUS status;
-} ENUM_SERVICES_STATUS;
-
-/* rpc structures */
-
-/**************************/
-
-typedef struct {
- POLICY_HND handle;
- uint32 type;
- uint32 state;
- uint32 buffer_size;
- uint32 *resume;
-} SVCCTL_Q_ENUM_SERVICES_STATUS;
-
-typedef struct {
- RPC_BUFFER buffer;
- uint32 needed;
- uint32 returned;
- uint32 *resume;
- WERROR status;
-} SVCCTL_R_ENUM_SERVICES_STATUS;
-
#endif /* _RPC_SVCCTL_H */