diff options
-rw-r--r-- | src/include/taler_wire_plugin.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/include/taler_wire_plugin.h b/src/include/taler_wire_plugin.h index ddbb725a7..203d6e37d 100644 --- a/src/include/taler_wire_plugin.h +++ b/src/include/taler_wire_plugin.h @@ -395,6 +395,16 @@ struct TALER_WIRE_Plugin (*merchant_register)(void *cls, const char *body, TALER_WIRE_MerchantRegisterCallback mrcb); + + /** + * Cancel pending operation of merchant registering. + * + * @param cls closure + * @param mrh handle to the pending operation to be cancelled. + */ + void + (*merchant_register_cancel)(void *cls, + struct TALER_WIRE_MerchantRegisterHandle *mrh); }; |