diff options
Diffstat (limited to 'src/mint/taler-mint-httpd_responses.h')
-rw-r--r-- | src/mint/taler-mint-httpd_responses.h | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/src/mint/taler-mint-httpd_responses.h b/src/mint/taler-mint-httpd_responses.h index 6dd8cda90..ce7557e1d 100644 --- a/src/mint/taler-mint-httpd_responses.h +++ b/src/mint/taler-mint-httpd_responses.h | |||
@@ -31,8 +31,8 @@ | |||
31 | #include <libpq-fe.h> | 31 | #include <libpq-fe.h> |
32 | #include <pthread.h> | 32 | #include <pthread.h> |
33 | #include "taler-mint-httpd.h" | 33 | #include "taler-mint-httpd.h" |
34 | #include "taler-mint-httpd_db.h" | ||
34 | #include "taler-mint-httpd_mhd.h" | 35 | #include "taler-mint-httpd_mhd.h" |
35 | #include "mint_db.h" | ||
36 | 36 | ||
37 | 37 | ||
38 | /** | 38 | /** |
@@ -135,5 +135,28 @@ TALER_MINT_reply_deposit_success (struct MHD_Connection *connection, | |||
135 | const struct Deposit *deposit); | 135 | const struct Deposit *deposit); |
136 | 136 | ||
137 | 137 | ||
138 | /** | ||
139 | * Send reserve status information to client. | ||
140 | * | ||
141 | * @param connection connection to the client | ||
142 | * @param reserve reserve status information to return | ||
143 | * @return MHD result code | ||
144 | */ | ||
145 | int | ||
146 | TALER_MINT_reply_withdraw_status_success (struct MHD_Connection *connection, | ||
147 | const struct Reserve *reserve); | ||
148 | |||
149 | |||
150 | /** | ||
151 | * Send blinded coin information to client. | ||
152 | * | ||
153 | * @param connection connection to the client | ||
154 | * @param collectable blinded coin to return | ||
155 | * @return MHD result code | ||
156 | */ | ||
157 | int | ||
158 | TALER_MINT_reply_withdraw_sign_success (struct MHD_Connection *connection, | ||
159 | const struct CollectableBlindcoin *collectable); | ||
160 | |||
138 | 161 | ||
139 | #endif | 162 | #endif |