1 /* $NetBSD: proto-passwd.h,v 1.1.1.3 2010/12/12 15:23:20 adam Exp $ */ 2 3 /* OpenLDAP: pkg/ldap/servers/slapd/back-passwd/proto-passwd.h,v 1.5.2.5 2010/04/13 20:23:36 kurt Exp */ 4 /* This work is part of OpenLDAP Software <http://www.openldap.org/>. 5 * 6 * Copyright 1998-2010 The OpenLDAP Foundation. 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 18 #ifndef PROTO_PASSWD_H 19 #define PROTO_PASSWD_H 20 21 LDAP_BEGIN_DECL 22 23 extern BI_init passwd_back_initialize; 24 extern BI_open passwd_back_open; 25 extern BI_destroy passwd_back_destroy; 26 extern BI_db_config passwd_back_db_config; 27 extern BI_op_search passwd_back_search; 28 29 extern AttributeDescription *ad_sn; 30 extern AttributeDescription *ad_desc; 31 LDAP_END_DECL 32 33 #endif /* PROTO_PASSWD_H */ 34