mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
34 lines
666 B
C
34 lines
666 B
C
/*
|
|
* Copyright 2002-2003 The OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
#ifndef _NULL_EXTERNAL_H
|
|
#define _NULL_EXTERNAL_H
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
extern BI_init null_back_initialize;
|
|
|
|
extern BI_db_init null_back_db_init;
|
|
extern BI_db_destroy null_back_db_destroy;
|
|
|
|
extern BI_db_config null_back_db_config;
|
|
|
|
extern BI_op_bind null_back_bind;
|
|
|
|
extern BI_op_search null_back_search;
|
|
|
|
extern BI_op_compare null_back_compare;
|
|
|
|
extern BI_op_modify null_back_modify;
|
|
|
|
extern BI_op_modrdn null_back_modrdn;
|
|
|
|
extern BI_op_add null_back_add;
|
|
|
|
extern BI_op_delete null_back_delete;
|
|
|
|
LDAP_END_DECL
|
|
|
|
#endif /* _NULL_EXTERNAL_H */
|