summaryrefslogtreecommitdiff
path: root/source3/include/dbwrap.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@sernet.de>2007-11-24 19:56:16 +0100
committerVolker Lendecke <vl@samba.org>2007-12-10 16:06:32 +0100
commit94a354493aef434510183146a548c4ef08009014 (patch)
tree83694feaa71bb14121f07e51b56968ffc7cc2835 /source3/include/dbwrap.h
parentaf082d096e49e7662400efee3e78174d888e88c3 (diff)
downloadsamba-94a354493aef434510183146a548c4ef08009014.tar.gz
samba-94a354493aef434510183146a548c4ef08009014.tar.bz2
samba-94a354493aef434510183146a548c4ef08009014.zip
Add dbwrap bystring service routines
(This used to be commit 1e214b536b0628db299d701839e62a4ac52727c9)
Diffstat (limited to 'source3/include/dbwrap.h')
-rw-r--r--source3/include/dbwrap.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/include/dbwrap.h b/source3/include/dbwrap.h
index c175f69c4d..3bb378c841 100644
--- a/source3/include/dbwrap.h
+++ b/source3/include/dbwrap.h
@@ -50,5 +50,10 @@ struct db_context *db_open(TALLOC_CTX *mem_ctx,
int hash_size, int tdb_flags,
int open_flags, mode_t mode);
+NTSTATUS dbwrap_delete_bystring(struct db_context *db, const char *key);
+NTSTATUS dbwrap_store_bystring(struct db_context *db, const char *key,
+ TDB_DATA data, int flags);
+TDB_DATA dbwrap_fetch_bystring(struct db_context *db, TALLOC_CTX *mem_ctx,
+ const char *key);
#endif /* __DBWRAP_H__ */