s4 dns: Import DNS win32 error codes from MS-ERREF
[Samba/gebeck_regimport.git] / lib / util / util_ldb.h
blobd2bc3b0ff7119132d6a03e793eeccb497549744d
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);
27 #endif /* __LIB_UTIL_UTIL_LDB_H__ */