]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/external.h
Sync with HEAD
[openldap] / servers / slapd / back-monitor / 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 file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* ACKNOWLEDGEMENTS:
16  * This work was initially developed by Pierangelo Masarati for inclusion
17  * in OpenLDAP Software.
18  */
19 /* This is an altered version */
20 /*
21  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
22  * 
23  * This work has beed deveolped for the OpenLDAP Foundation 
24  * in the hope that it may be useful to the Open Source community, 
25  * but WITHOUT ANY WARRANTY.
26  * 
27  * Permission is granted to anyone to use this software for any purpose
28  * on any computer system, and to alter it and redistribute it, subject
29  * to the following restrictions:
30  * 
31  * 1. The author and SysNet s.n.c. are not responsible for the consequences
32  *    of use of this software, no matter how awful, even if they arise from
33  *    flaws in it.
34  * 
35  * 2. The origin of this software must not be misrepresented, either by
36  *    explicit claim or by omission.  Since few users ever read sources,
37  *    credits should appear in the documentation.
38  * 
39  * 3. Altered versions must be plainly marked as such, and must not be
40  *    misrepresented as being the original software.  Since few users
41  *    ever read sources, credits should appear in the documentation.
42  *    SysNet s.n.c. cannot be responsible for the consequences of the
43  *    alterations.
44  * 
45  * 4. This notice may not be removed or altered.
46  */
47
48 #ifndef _MONITOR_EXTERNAL_H
49 #define _MONITOR_EXTERNAL_H
50
51 LDAP_BEGIN_DECL
52
53 extern BI_init  monitor_back_initialize;
54 extern BI_db_init       monitor_back_db_init;
55 extern BI_db_open       monitor_back_db_open;
56 extern BI_config        monitor_back_config;
57 extern BI_db_config     monitor_back_db_config;
58
59 extern BI_db_destroy    monitor_back_db_destroy;
60
61 extern BI_op_search     monitor_back_search;
62 extern BI_op_compare    monitor_back_compare;
63 extern BI_op_modify     monitor_back_modify;
64 extern BI_op_bind       monitor_back_bind;
65 extern BI_operational   monitor_back_operational;
66
67 LDAP_END_DECL
68
69 #endif /* _MONITOR_EXTERNAL_H */