donau

Donation authority for GNU Taler (experimental)
Log | Files | Refs | Submodules | README | LICENSE

commit a2c74ea0625115fa4faa6dd7af76324f551b74a8
parent 36a5d95a44c25ad1a14f905bd02ad26b33dca501
Author: Casaburi Johannes <johannes.casaburi@students.bfh.ch>
Date:   Mon,  4 Dec 2023 22:09:14 +0100

[db] remove lib

Diffstat:
M.gitignore | 3+++
Msrc/donaudb/donaudb_plugin.c | 1-
Msrc/include/donaudb_plugin.h | 24++++++++++++------------
3 files changed, 15 insertions(+), 13 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -7,3 +7,6 @@ configure configure~ taler_config.h.in~ src/include/donau_signatures.h +*.md5~ +*.unc-backup~ +*.orig diff --git a/src/donaudb/donaudb_plugin.c b/src/donaudb/donaudb_plugin.c @@ -21,7 +21,6 @@ */ #include "taler/platform.h" #include "donaudb_plugin.h" -#include <gnunet/gnunet_db_lib.h> #include <ltdl.h> diff --git a/src/include/donaudb_plugin.h b/src/include/donaudb_plugin.h @@ -151,7 +151,7 @@ struct DONAUDB_Plugin * @return #GNUNET_OK upon success; #GNUNET_SYSERR upon failure */ enum GNUNET_GenericReturnValue - (*drop_tables)(void *cls); + (*drop_tables)(void *cls); /** * Create the necessary tables if they are not present @@ -164,9 +164,9 @@ struct DONAUDB_Plugin * @return #GNUNET_OK upon success; #GNUNET_SYSERR upon failure */ enum GNUNET_GenericReturnValue - (*create_tables)(void *cls, - bool support_partitions, - uint32_t num_partitions); + (*create_tables)(void *cls, + bool support_partitions, + uint32_t num_partitions); /** @@ -178,8 +178,8 @@ struct DONAUDB_Plugin * @return #GNUNET_OK on success */ enum GNUNET_GenericReturnValue - (*start)(void *cls, - const char *name); + (*start)(void *cls, + const char *name); /** @@ -191,8 +191,8 @@ struct DONAUDB_Plugin * @return #GNUNET_OK on success */ enum GNUNET_GenericReturnValue - (*start_read_committed)(void *cls, - const char *name); + (*start_read_committed)(void *cls, + const char *name); /** * Start a READ ONLY serializable transaction. @@ -203,8 +203,8 @@ struct DONAUDB_Plugin * @return #GNUNET_OK on success */ enum GNUNET_GenericReturnValue - (*start_read_only)(void *cls, - const char *name); + (*start_read_only)(void *cls, + const char *name); /** @@ -214,7 +214,7 @@ struct DONAUDB_Plugin * @return transaction status */ enum GNUNET_DB_QueryStatus - (*commit)(void *cls); + (*commit)(void *cls); /** @@ -228,7 +228,7 @@ struct DONAUDB_Plugin * #GNUNET_SYSERR on hard errors */ enum GNUNET_GenericReturnValue - (*preflight)(void *cls); + (*preflight)(void *cls); /**