diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-05-30 16:28:42 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-05-30 16:28:42 +0000 |
commit | dc02f81650abc7545d083262afb1c99b6398f58f (patch) | |
tree | 95211f478ce893a77c5cab0ebcf716fa9942c730 /docs/docbook/devdoc/rpc_plugin.xml | |
parent | 545e8d499947fec55832352d741e8a904122d564 (diff) | |
download | samba-dc02f81650abc7545d083262afb1c99b6398f58f.tar.gz samba-dc02f81650abc7545d083262afb1c99b6398f58f.tar.bz2 samba-dc02f81650abc7545d083262afb1c99b6398f58f.zip |
Update for new API. Fixes bug #89
(This used to be commit 2e894f279c4517bcaddb14e42d9bd732117b7694)
Diffstat (limited to 'docs/docbook/devdoc/rpc_plugin.xml')
-rw-r--r-- | docs/docbook/devdoc/rpc_plugin.xml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/docbook/devdoc/rpc_plugin.xml b/docs/docbook/devdoc/rpc_plugin.xml index c83742a247..287e35b0be 100644 --- a/docs/docbook/devdoc/rpc_plugin.xml +++ b/docs/docbook/devdoc/rpc_plugin.xml @@ -50,12 +50,17 @@ rpc_pipe_register_commands(). This function takes the following arguments: </para> <para><programlisting> -int rpc_pipe_register_commands(const char *clnt, const char *srv, +NTSTATUS rpc_pipe_register_commands(int version, const char *clnt, const char *srv, const struct api_struct *cmds, int size); </programlisting></para> <variablelist> +<varlistentry><term>version</term> +<listitem><para>Version number of the RPC interface. Use the define <emphasis>SMB_RPC_INTERFACE_VERSION</emphasis> for this +argument.</para></listitem> +</varlistentry> + <varlistentry><term>clnt</term> <listitem><para>the Client name of the named pipe</para></listitem> </varlistentry> |