summaryrefslogtreecommitdiffstats
path: root/source/rpcclient/rpcclient.h
diff options
context:
space:
mode:
authorcvs2svn Import User <samba-bugs@samba.org>2002-01-30 06:08:47 +0000
committercvs2svn Import User <samba-bugs@samba.org>2002-01-30 06:08:47 +0000
commitf98c14e8d6d8f1def0edcd02e1dfe66bab8a2ab6 (patch)
treed90b8fde996b38301a722a2ae5f0dec28a45df59 /source/rpcclient/rpcclient.h
parent3b1778dc0aaf7f4e9093b3a714fde6ff9fbe1aaf (diff)
parent6a58c9bd06d0d7502a24bf5ce5a2faf0a146edfa (diff)
downloadsamba-f98c14e8d6d8f1def0edcd02e1dfe66bab8a2ab6.tar.gz
samba-f98c14e8d6d8f1def0edcd02e1dfe66bab8a2ab6.tar.xz
samba-f98c14e8d6d8f1def0edcd02e1dfe66bab8a2ab6.zip
This commit was manufactured by cvs2svn to create branch
'SAMBA_2_2_RELEASE'.
Diffstat (limited to 'source/rpcclient/rpcclient.h')
-rw-r--r--source/rpcclient/rpcclient.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/source/rpcclient/rpcclient.h b/source/rpcclient/rpcclient.h
new file mode 100644
index 00000000000..72491373d67
--- /dev/null
+++ b/source/rpcclient/rpcclient.h
@@ -0,0 +1,34 @@
+/*
+ Unix SMB/CIFS implementation.
+ RPC pipe client
+
+ Copyright (C) Tim Potter 2000
+
+ 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.
+*/
+
+#ifndef RPCCLIENT_H
+#define RPCCLIENT_H
+
+struct cmd_set {
+ char *name;
+ NTSTATUS (*fn)(struct cli_state*, TALLOC_CTX *mem_ctx, int argc,
+ char **argv);
+ char *pipe;
+ char *description;
+ char *usage;
+};
+
+#endif /* RPCCLIENT_H */