mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
a3f61dea40
This reverts commit 8a2ce5c47c
.
Jelmer pointed out that these are also in use by other LDB databases - not only
SAMDB ones.
Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Sun Oct 17 13:37:16 UTC 2010 on sn-devel-104
28 lines
767 B
C
28 lines
767 B
C
#ifndef __LIB_UTIL_UTIL_LDB_H__
|
|
#define __LIB_UTIL_UTIL_LDB_H__
|
|
|
|
struct ldb_dn;
|
|
|
|
/* The following definitions come from lib/util/util_ldb.c */
|
|
|
|
int gendb_search_v(struct ldb_context *ldb,
|
|
TALLOC_CTX *mem_ctx,
|
|
struct ldb_dn *basedn,
|
|
struct ldb_message ***msgs,
|
|
const char * const *attrs,
|
|
const char *format,
|
|
va_list ap) PRINTF_ATTRIBUTE(6,0);
|
|
int gendb_search(struct ldb_context *ldb,
|
|
TALLOC_CTX *mem_ctx,
|
|
struct ldb_dn *basedn,
|
|
struct ldb_message ***res,
|
|
const char * const *attrs,
|
|
const char *format, ...) PRINTF_ATTRIBUTE(6,7);
|
|
int gendb_search_dn(struct ldb_context *ldb,
|
|
TALLOC_CTX *mem_ctx,
|
|
struct ldb_dn *dn,
|
|
struct ldb_message ***res,
|
|
const char * const *attrs);
|
|
|
|
#endif /* __LIB_UTIL_UTIL_LDB_H__ */
|