1 /* $OpenLDAP: pkg/ldap/servers/slapd/back-perl/proto-perl.h,v 1.5.2.4 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 1999 John C. Quillan. 6 * Portions Copyright 2002 myinternet Limited. 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 file LICENSE in the 14 * top-level directory of the distribution or, alternatively, at 15 * <http://www.OpenLDAP.org/license.html>. 16 */ 17 18 #ifndef PROTO_PERL_H 19 #define PROTO_PERL_H 20 21 LDAP_BEGIN_DECL 22 23 extern BI_init perl_back_initialize; 24 25 extern BI_close perl_back_close; 26 27 extern BI_db_init perl_back_db_init; 28 extern BI_db_open perl_back_db_open; 29 extern BI_db_destroy perl_back_db_destroy; 30 extern BI_db_config perl_back_db_config; 31 32 extern BI_op_bind perl_back_bind; 33 extern BI_op_search perl_back_search; 34 extern BI_op_compare perl_back_compare; 35 extern BI_op_modify perl_back_modify; 36 extern BI_op_modrdn perl_back_modrdn; 37 extern BI_op_add perl_back_add; 38 extern BI_op_delete perl_back_delete; 39 40 LDAP_END_DECL 41 42 #endif /* PROTO_PERL_H */ 43