summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-07-29 15:14:57 +0200
committerMichael Adam <obnox@samba.org>2009-07-29 16:26:29 +0200
commitae58ff981df4acadb43f0c89e75b760538673bf4 (patch)
tree49ff0d8512ba6d1387ee570f22639b81044171d4 /source3/include
parentfac81b375099e32f8124ae3cba631bb5fe36b1cb (diff)
downloadsamba-ae58ff981df4acadb43f0c89e75b760538673bf4.tar.gz
samba-ae58ff981df4acadb43f0c89e75b760538673bf4.tar.bz2
samba-ae58ff981df4acadb43f0c89e75b760538673bf4.zip
s3:dbwrap: add dbwrap_trans_change_int32_atomic()
A transaction wrapper for dbwrap_change_int32_atomic(). Michael
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/proto.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index b7a16567fe..00cfd6129e 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -448,6 +448,10 @@ NTSTATUS dbwrap_trans_change_uint32_atomic(struct db_context *db,
uint32_t change_val);
NTSTATUS dbwrap_change_int32_atomic(struct db_context *db, const char *keystr,
int32_t *oldval, int32_t change_val);
+NTSTATUS dbwrap_trans_change_int32_atomic(struct db_context *db,
+ const char *keystr,
+ int32_t *oldval,
+ int32_t change_val);
NTSTATUS dbwrap_trans_store(struct db_context *db, TDB_DATA key, TDB_DATA dbuf,
int flag);
NTSTATUS dbwrap_trans_delete(struct db_context *db, TDB_DATA key);