]> git.sur5r.net Git - openldap/blob - servers/slapd/back-null/external.h
Add calls to module_init/module_kill to support dynamically loaded backends.
[openldap] / servers / slapd / back-null / external.h
1 /*
2  * Copyright 2002 The OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  */
5 #ifndef _NULL_EXTERNAL_H
6 #define _NULL_EXTERNAL_H
7
8 LDAP_BEGIN_DECL
9
10 extern BI_init          null_back_initialize;
11
12 extern BI_db_init       null_back_db_init;
13 extern BI_db_destroy null_back_db_destroy;
14
15 extern BI_db_config     null_back_db_config;
16
17 extern BI_op_bind       null_back_bind;
18
19 extern BI_op_search     null_back_search;
20
21 extern BI_op_compare null_back_compare;
22
23 extern BI_op_modify     null_back_modify;
24
25 extern BI_op_modrdn     null_back_modrdn;
26
27 extern BI_op_add        null_back_add;
28
29 extern BI_op_delete     null_back_delete;
30
31 LDAP_END_DECL
32
33 #endif /* _NULL_EXTERNAL_H */