aboutsummaryrefslogtreecommitdiff
path: root/src/mint/taler-mint-httpd_responses.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mint/taler-mint-httpd_responses.h')
-rw-r--r--src/mint/taler-mint-httpd_responses.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mint/taler-mint-httpd_responses.h b/src/mint/taler-mint-httpd_responses.h
index be662319f..6dd8cda90 100644
--- a/src/mint/taler-mint-httpd_responses.h
+++ b/src/mint/taler-mint-httpd_responses.h
@@ -32,6 +32,7 @@
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_mhd.h" 34#include "taler-mint-httpd_mhd.h"
35#include "mint_db.h"
35 36
36 37
37/** 38/**
@@ -122,6 +123,16 @@ int
122TALER_MINT_reply_invalid_json (struct MHD_Connection *connection); 123TALER_MINT_reply_invalid_json (struct MHD_Connection *connection);
123 124
124 125
126/**
127 * Send confirmation of deposit success to client.
128 *
129 * @param connection connection to the client
130 * @param deposit deposit request to confirm
131 * @return MHD result code
132 */
133int
134TALER_MINT_reply_deposit_success (struct MHD_Connection *connection,
135 const struct Deposit *deposit);
125 136
126 137
127 138