]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldbm/external.h
Sync with HEAD
[openldap] / servers / slapd / back-ldbm / external.h
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2003 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15
16 #ifndef _LDBM_EXTERNAL_H
17 #define _LDBM_EXTERNAL_H
18
19 LDAP_BEGIN_DECL
20
21 extern BI_init  ldbm_back_initialize;
22 extern BI_open  ldbm_back_open;
23 extern BI_close ldbm_back_close;
24 extern BI_destroy       ldbm_back_destroy;
25
26 extern BI_db_init       ldbm_back_db_init;
27 extern BI_db_open       ldbm_back_db_open;
28 extern BI_db_close      ldbm_back_db_close;
29 extern BI_db_destroy    ldbm_back_db_destroy;
30
31 extern BI_db_config     ldbm_back_db_config;
32
33 extern BI_op_extended   ldbm_back_extended;
34
35 extern BI_op_bind       ldbm_back_bind;
36
37 extern BI_op_search     ldbm_back_search;
38
39 extern BI_op_compare    ldbm_back_compare;
40
41 extern BI_op_modify     ldbm_back_modify;
42
43 extern BI_op_modrdn     ldbm_back_modrdn;
44
45 extern BI_op_add        ldbm_back_add;
46
47 extern BI_op_delete     ldbm_back_delete;
48
49 extern BI_operational   ldbm_back_operational;
50
51 extern BI_has_subordinates      ldbm_back_hasSubordinates;
52
53 /* hooks for slap tools */
54 extern BI_tool_entry_open       ldbm_tool_entry_open;
55 extern BI_tool_entry_close      ldbm_tool_entry_close;
56 extern BI_tool_entry_first      ldbm_tool_entry_first;
57 extern BI_tool_entry_next       ldbm_tool_entry_next;
58 extern BI_tool_entry_get        ldbm_tool_entry_get;
59 extern BI_tool_entry_put        ldbm_tool_entry_put;
60
61 extern BI_tool_entry_reindex    ldbm_tool_entry_reindex;
62 extern BI_tool_sync     ldbm_tool_sync;
63
64 extern BI_chk_referrals ldbm_back_referrals;
65
66 LDAP_END_DECL
67
68 #endif /* _LDBM_EXTERNAL_H */