diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-02-19 11:45:33 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:48:36 -0500 |
commit | eaaf246d4fa42df5e590ee5bfe54e672abd26b02 (patch) | |
tree | 04e79b6edf7c136816546ab1d1466763afaebbfb /source4/lib/tdb/include/tdb.h | |
parent | 32afb0d15fa2d941ec1c01fd9cf23200481652c9 (diff) | |
download | samba-eaaf246d4fa42df5e590ee5bfe54e672abd26b02.tar.gz samba-eaaf246d4fa42df5e590ee5bfe54e672abd26b02.tar.bz2 samba-eaaf246d4fa42df5e590ee5bfe54e672abd26b02.zip |
r21445: Apply tdb_parse_record Tridges error return, merge to 3_0_25 and 4_0
(This used to be commit afe7d7855841066b88859976ac748cbf438a9a9f)
Diffstat (limited to 'source4/lib/tdb/include/tdb.h')
-rw-r--r-- | source4/lib/tdb/include/tdb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/lib/tdb/include/tdb.h b/source4/lib/tdb/include/tdb.h index cbcaf9023c..07a8160f10 100644 --- a/source4/lib/tdb/include/tdb.h +++ b/source4/lib/tdb/include/tdb.h @@ -101,6 +101,10 @@ void tdb_set_logging_function(struct tdb_context *tdb, const struct tdb_logging_ enum TDB_ERROR tdb_error(struct tdb_context *tdb); const char *tdb_errorstr(struct tdb_context *tdb); TDB_DATA tdb_fetch(struct tdb_context *tdb, TDB_DATA key); +int tdb_parse_record(struct tdb_context *tdb, TDB_DATA key, + int (*parser)(TDB_DATA key, TDB_DATA data, + void *private_data), + void *private_data); int tdb_delete(struct tdb_context *tdb, TDB_DATA key); int tdb_store(struct tdb_context *tdb, TDB_DATA key, TDB_DATA dbuf, int flag); int tdb_append(struct tdb_context *tdb, TDB_DATA key, TDB_DATA new_dbuf); |