summaryrefslogtreecommitdiff
path: root/source4/librpc/rpc
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-12-31 00:02:41 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:49:06 -0500
commit2cb372f7a457d16bef791eb9670f61555510fe87 (patch)
tree4e69fe5f6e60c8b0fdbbc4bb0bb7b96ffb310abc /source4/librpc/rpc
parent046a54f96394fe49226ab2b48fdeb7c07937ea57 (diff)
downloadsamba-2cb372f7a457d16bef791eb9670f61555510fe87.tar.gz
samba-2cb372f7a457d16bef791eb9670f61555510fe87.tar.bz2
samba-2cb372f7a457d16bef791eb9670f61555510fe87.zip
r12623: Another round of fixes for the prototypes of tables.c
(This used to be commit fb5b22e3dc9ad0892817ae72a73e1e80f3db75c5)
Diffstat (limited to 'source4/librpc/rpc')
-rw-r--r--source4/librpc/rpc/table.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/source4/librpc/rpc/table.c b/source4/librpc/rpc/table.c
index 14600a779f..8dfecd858e 100644
--- a/source4/librpc/rpc/table.c
+++ b/source4/librpc/rpc/table.c
@@ -119,3 +119,16 @@ const struct dcerpc_interface_list *librpc_dcerpc_pipes(void)
}
+NTSTATUS dcerpc_register_builtin_interfaces();
+
+NTSTATUS dcerpc_table_init(void)
+{
+ static BOOL initialized = False;
+
+ if (initialized) return NT_STATUS_OK;
+ initialized = True;
+
+ dcerpc_register_builtin_interfaces();
+
+ return NT_STATUS_OK;
+}