diff options
author | Gerald Carter <jerry@samba.org> | 2005-03-24 04:25:49 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:16 -0500 |
commit | 2e3ce1d534b544b2eedd9183f9f97c17a8e403fc (patch) | |
tree | 728d5ebb0a5544f56712d0a4aa87cb08a57cb64e /source3/rpc_client | |
parent | 143bf1202c924f53db811d1d076580eea4acdb7e (diff) | |
download | samba-2e3ce1d534b544b2eedd9183f9f97c17a8e403fc.tar.gz samba-2e3ce1d534b544b2eedd9183f9f97c17a8e403fc.tar.bz2 samba-2e3ce1d534b544b2eedd9183f9f97c17a8e403fc.zip |
r6029: adding files necessary to support 'net rpc service' functions; will fill in tomorrow
(This used to be commit 6bbd61cfd1ca2dbe8d96d894f90f263b8f24571f)
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_svcctl.c | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/source3/rpc_client/cli_svcctl.c b/source3/rpc_client/cli_svcctl.c new file mode 100644 index 0000000000..afef5f4fbb --- /dev/null +++ b/source3/rpc_client/cli_svcctl.c @@ -0,0 +1,77 @@ +/* + * Unix SMB/CIFS implementation. + * RPC Pipe client / server routines + * Copyright (C) Gerald Carter 2005. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + + +#include "includes.h" + + +/******************************************************************* +*******************************************************************/ + +NTSTATUS cli_svcctl_enumerate_services(struct cli_state *cli, TALLOC_CTX *mem_ctx ) +{ + return NT_STATUS_OK; +} + +/******************************************************************* +*******************************************************************/ + +NTSTATUS cli_svcctl_start_service(struct cli_state *cli, TALLOC_CTX *mem_ctx ) +{ + + return NT_STATUS_OK; +} + +/******************************************************************* +*******************************************************************/ + +NTSTATUS cli_svcctl_control_service(struct cli_state *cli, TALLOC_CTX *mem_ctx ) +{ + + return NT_STATUS_OK; +} + +/******************************************************************* +*******************************************************************/ + +NTSTATUS cli_svcctl_query_status(struct cli_state *cli, TALLOC_CTX *mem_ctx ) +{ + + return NT_STATUS_OK; +} + +/******************************************************************* +*******************************************************************/ + +NTSTATUS cli_svcctl_query_config(struct cli_state *cli, TALLOC_CTX *mem_ctx ) +{ + + return NT_STATUS_OK; +} + +/******************************************************************* +*******************************************************************/ + +NTSTATUS cli_svcctl_get_dispname(struct cli_state *cli, TALLOC_CTX *mem_ctx ) +{ + + return NT_STATUS_OK; +} + |