2015-06-09 13:03:37 +02:00
|
|
|
#ifndef __PERF_TALER_MINTDB_INIT_H___
|
|
|
|
#define __PERF_TALER_MINTDB_INIT_H___
|
|
|
|
|
|
|
|
|
|
|
|
#include <gnunet/platform.h>
|
|
|
|
|
|
|
|
#include <taler/taler_mintdb_lib.h>
|
|
|
|
#include <taler/taler_mintdb_plugin.h>
|
|
|
|
|
|
|
|
|
2015-06-09 13:55:05 +02:00
|
|
|
#define CURRENCY "EUR"
|
2015-06-09 13:03:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
struct TALER_MINTDB_CollectableBlindcoin *
|
2015-06-09 13:55:05 +02:00
|
|
|
init_collectable_blindcoin(void);
|
2015-06-09 13:03:37 +02:00
|
|
|
|
|
|
|
struct TALER_MINTDB_RefreshSession *
|
2015-06-09 13:55:05 +02:00
|
|
|
init_refresh_session(void);
|
2015-06-09 13:03:37 +02:00
|
|
|
|
|
|
|
struct TALER_MINTDB_Deposit *
|
|
|
|
init_deposit(int transaction_id);
|
|
|
|
|
|
|
|
struct TALER_MINTDB_DenominationKeyIssueInformation *
|
2015-06-09 13:55:05 +02:00
|
|
|
init_denomination(void);
|
2015-06-09 13:03:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
free_deposit(struct TALER_MINTDB_Deposit *deposit);
|
|
|
|
|
|
|
|
int
|
2015-06-09 13:55:05 +02:00
|
|
|
free_collectable_blindcoin(struct TALER_MINTDB_CollectableBlindcoin *NAME);
|
2015-06-09 13:03:37 +02:00
|
|
|
|
2015-06-09 13:55:05 +02:00
|
|
|
int
|
2015-06-09 13:03:37 +02:00
|
|
|
free_denomination(struct TALER_MINTDB_DenominationKeyIssueInformation *dki);
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|