proto-meta.h revision 1.1
1/* $OpenLDAP: pkg/ldap/servers/slapd/back-meta/proto-meta.h,v 1.5.2.3 2008/02/11 23:26:47 kurt Exp $ */
2/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3 *
4 * Copyright 1999-2008 The OpenLDAP Foundation.
5 * Portions Copyright 2001-2003 Pierangelo Masarati.
6 * Portions Copyright 1999-2003 Howard Chu.
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted only as authorized by the OpenLDAP
11 * Public License.
12 *
13 * A copy of this license is available in the file LICENSE in the
14 * top-level directory of the distribution or, alternatively, at
15 * <http://www.OpenLDAP.org/license.html>.
16 */
17/* ACKNOWLEDGEMENTS:
18 * This work was initially developed by the Howard Chu for inclusion
19 * in OpenLDAP Software and subsequently enhanced by Pierangelo
20 * Masarati.
21 */
22
23#ifndef PROTO_META_H
24#define PROTO_META_H
25
26LDAP_BEGIN_DECL
27
28extern BI_init			meta_back_initialize;
29
30extern BI_open			meta_back_open;
31extern BI_close			meta_back_close;
32extern BI_destroy		meta_back_destroy;
33
34extern BI_db_init		meta_back_db_init;
35extern BI_db_open		meta_back_db_open;
36extern BI_db_destroy		meta_back_db_destroy;
37extern BI_db_config		meta_back_db_config;
38
39extern BI_op_bind		meta_back_bind;
40extern BI_op_search		meta_back_search;
41extern BI_op_compare		meta_back_compare;
42extern BI_op_modify		meta_back_modify;
43extern BI_op_modrdn		meta_back_modrdn;
44extern BI_op_add		meta_back_add;
45extern BI_op_delete		meta_back_delete;
46extern BI_op_abandon		meta_back_abandon;
47
48extern BI_connection_destroy	meta_back_conn_destroy;
49
50LDAP_END_DECL
51
52#endif /* PROTO_META_H */
53