diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-01-27 17:09:08 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-01-27 17:09:08 +0100 |
commit | b7215299d8fee1b57c1aa9f5bbb8f8202cfd0369 (patch) | |
tree | 0d147cf175ae8ce0d50211a227cdea17bf5a2918 /src/include/taler_mintdb_plugin.h | |
parent | 9a45742fe4b819c22b0b0d8832ff4a0a07096a90 (diff) |
adding SQL for prewire data storage
Diffstat (limited to 'src/include/taler_mintdb_plugin.h')
-rw-r--r-- | src/include/taler_mintdb_plugin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/taler_mintdb_plugin.h b/src/include/taler_mintdb_plugin.h index ba09ea42e..1d40f2935 100644 --- a/src/include/taler_mintdb_plugin.h +++ b/src/include/taler_mintdb_plugin.h @@ -626,11 +626,13 @@ typedef void * Callback with data about a prepared transaction. * * @param cls closure + * @param rowid row identifier used to mark prepared transaction as done * @param buf transaction data that was persisted, NULL on error * @param buf_size number of bytes in @a buf, 0 on error */ typedef void (*TALER_MINTDB_WirePreparationCallback) (void *cls, + unsigned long long rowid, const char *buf, size_t buf_size); |