diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-03-23 11:34:24 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-03-23 11:34:24 +0100 |
commit | ac950fbe61defd6d451d4e5096a877e4af016590 (patch) | |
tree | df38b200534e110e1d935916b34ea4152a56222d /src/include | |
parent | 7f7ac5d92c6e29b80ec2055f2023657d330ffd1c (diff) |
switch to wid to comply with spec
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_bank_service.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/taler_bank_service.h b/src/include/taler_bank_service.h index 508ca714b..920ae47fd 100644 --- a/src/include/taler_bank_service.h +++ b/src/include/taler_bank_service.h @@ -22,6 +22,7 @@ #ifndef _TALER_BANK_SERVICE_H #define _TALER_BANK_SERVICE_H +#include <jansson.h> #include "taler_util.h" /* ********************* event loop *********************** */ @@ -117,10 +118,12 @@ struct TALER_BANK_AdminAddIncomingHandle; * @param cls closure * @param http_status HTTP response code, #MHD_HTTP_OK (200) for successful status request * 0 if the bank's reply is bogus (fails to follow the protocol) + * @param json detailed response from the HTTPD, or NULL if reply was not in JSON */ typedef void (*TALER_BANK_AdminAddIncomingResultCallback) (void *cls, - unsigned int http_status); + unsigned int http_status, + json_t *json); /** |