diff options
author | Michael Adam <obnox@samba.org> | 2013-01-02 01:02:56 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-01-15 14:49:20 +0100 |
commit | 11850e4605bc50e0b4aa07f8c46154fc01504646 (patch) | |
tree | 13511f700eb82567540ba56425c908f1b59036bf /lib/dbwrap/dbwrap.h | |
parent | d67911bafc0d098e67c8ad8d9b4bc49f184ff832 (diff) | |
download | samba-11850e4605bc50e0b4aa07f8c46154fc01504646.tar.gz samba-11850e4605bc50e0b4aa07f8c46154fc01504646.tar.bz2 samba-11850e4605bc50e0b4aa07f8c46154fc01504646.zip |
dbwrap: add dbwrap_is_persistent()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Diffstat (limited to 'lib/dbwrap/dbwrap.h')
-rw-r--r-- | lib/dbwrap/dbwrap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/dbwrap/dbwrap.h b/lib/dbwrap/dbwrap.h index 3b0d61c92c..e394296a9b 100644 --- a/lib/dbwrap/dbwrap.h +++ b/lib/dbwrap/dbwrap.h @@ -84,6 +84,7 @@ NTSTATUS dbwrap_transaction_start_nonblock(struct db_context *db); int dbwrap_transaction_commit(struct db_context *db); int dbwrap_transaction_cancel(struct db_context *db); void dbwrap_db_id(struct db_context *db, const uint8_t **id, size_t *idlen); +bool dbwrap_is_persistent(struct db_context *db); const char *dbwrap_name(struct db_context *db); /* The following definitions come from lib/dbwrap_util.c */ |