diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-12-18 00:11:36 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-12-18 00:47:06 +0100 |
commit | 6b5a0cf6303dd760304619cf8fb1b4b33afcceaa (patch) | |
tree | 94fb830a1a44ee07f412f0d8189bf198a9d35227 /source4/lib/ldb/include | |
parent | fff18e0cc38dca018c44696a93fcd7356a823bba (diff) | |
download | samba-6b5a0cf6303dd760304619cf8fb1b4b33afcceaa.tar.gz samba-6b5a0cf6303dd760304619cf8fb1b4b33afcceaa.tar.bz2 samba-6b5a0cf6303dd760304619cf8fb1b4b33afcceaa.zip |
ldb: Add prototype for ldb_init_module.
Diffstat (limited to 'source4/lib/ldb/include')
-rw-r--r-- | source4/lib/ldb/include/ldb_module.h | 5 |
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 |