From 94a354493aef434510183146a548c4ef08009014 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 24 Nov 2007 19:56:16 +0100 Subject: Add dbwrap bystring service routines (This used to be commit 1e214b536b0628db299d701839e62a4ac52727c9) --- source3/include/dbwrap.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source3/include') 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__ */ -- cgit