summaryrefslogtreecommitdiff
path: root/source4/lib
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-12-18 00:11:36 +0100
committerJelmer Vernooij <jelmer@samba.org>2010-12-18 00:47:06 +0100
commit6b5a0cf6303dd760304619cf8fb1b4b33afcceaa (patch)
tree94fb830a1a44ee07f412f0d8189bf198a9d35227 /source4/lib
parentfff18e0cc38dca018c44696a93fcd7356a823bba (diff)
downloadsamba-6b5a0cf6303dd760304619cf8fb1b4b33afcceaa.tar.gz
samba-6b5a0cf6303dd760304619cf8fb1b4b33afcceaa.tar.bz2
samba-6b5a0cf6303dd760304619cf8fb1b4b33afcceaa.zip
ldb: Add prototype for ldb_init_module.
Diffstat (limited to 'source4/lib')
-rw-r--r--source4/lib/ldb/include/ldb_module.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/lib/ldb/include/ldb_module.h b/source4/lib/ldb/include/ldb_module.h
index 836c562dfc..bd3eaac547 100644
--- a/source4/lib/ldb/include/ldb_module.h
+++ b/source4/lib/ldb/include/ldb_module.h
@@ -313,5 +313,10 @@ int ldb_module_connect_backend(struct ldb_context *ldb,
*/
int ldb_module_init_chain(struct ldb_context *ldb, struct ldb_module *module);
+/*
+ * prototype for the init function defined by dynamically loaded modules
+ */
+int ldb_init_module(const char *version);
+
#endif