s3/docs: Fix typos.
[Samba/gebeck_regimport.git] / lib / util / util_ldb.h
blob4575c6565a1c7e871b905023421ac495078575de
1 #ifndef __LIB_UTIL_UTIL_LDB_H__
2 #define __LIB_UTIL_UTIL_LDB_H__
4 struct ldb_dn;
6 /* The following definitions come from lib/util/util_ldb.c */
8 int gendb_search_v(struct ldb_context *ldb,
9 TALLOC_CTX *mem_ctx,
10 struct ldb_dn *basedn,
11 struct ldb_message ***msgs,
12 const char * const *attrs,
13 const char *format,
14 va_list ap) PRINTF_ATTRIBUTE(6,0);
15 int gendb_search(struct ldb_context *ldb,
16 TALLOC_CTX *mem_ctx,
17 struct ldb_dn *basedn,
18 struct ldb_message ***res,
19 const char * const *attrs,
20 const char *format, ...) PRINTF_ATTRIBUTE(6,7);
21 int gendb_search_dn(struct ldb_context *ldb,
22 TALLOC_CTX *mem_ctx,
23 struct ldb_dn *dn,
24 struct ldb_message ***res,
25 const char * const *attrs);
26 int gendb_add_ldif(struct ldb_context *ldb, const char *ldif_string);
27 char *wrap_casefold(void *context, void *mem_ctx, const char *s, size_t n);
29 int gendb_search_single_extended_dn(struct ldb_context *ldb,
30 TALLOC_CTX *mem_ctx,
31 struct ldb_dn *basedn,
32 enum ldb_scope scope,
33 struct ldb_message **msg,
34 const char * const *attrs,
35 const char *format, ...) PRINTF_ATTRIBUTE(7,8);
37 #endif /* __LIB_UTIL_UTIL_LDB_H__ */