summaryrefslogtreecommitdiff
path: root/taler_wallet_core_lib.h
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-01-04 11:52:19 +0100
committerFlorian Dold <florian@dold.me>2023-01-04 11:52:19 +0100
commit5abeccff70e3a01c4cfadad0f5fb373f9bf193d4 (patch)
tree455a293602ea5b382cd2509b45717316bcc88a6c /taler_wallet_core_lib.h
parent57535d3ed1847ec3335ab2b86a313a972da54688 (diff)
downloadquickjs-tart-5abeccff70e3a01c4cfadad0f5fb373f9bf193d4.tar.gz
quickjs-tart-5abeccff70e3a01c4cfadad0f5fb373f9bf193d4.tar.bz2
quickjs-tart-5abeccff70e3a01c4cfadad0f5fb373f9bf193d4.zip
naming
Diffstat (limited to 'taler_wallet_core_lib.h')
-rw-r--r--taler_wallet_core_lib.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/taler_wallet_core_lib.h b/taler_wallet_core_lib.h
index 97b9d50..6693cd7 100644
--- a/taler_wallet_core_lib.h
+++ b/taler_wallet_core_lib.h
@@ -26,7 +26,7 @@
#define _TALER_WALLET_LIB_H
/**
- * Opaque handle to a Taler wallet-core.
+ * Opaque handle to a Taler wallet-core instance.
*/
struct TALER_WALLET_Instance;
@@ -51,7 +51,7 @@ TALER_WALLET_create(void);
* Caution: The handler will be called from a different thread.
*/
void
-TALER_WALLET_set_message_handler(struct TALER_WALLET_Instance *h,
+TALER_WALLET_set_message_handler(struct TALER_WALLET_Instance *twi,
TALER_WALLET_MessageHandlerFn handler_f,
void *handler_p);
@@ -72,8 +72,8 @@ TALER_WALLET_set_message_handler(struct TALER_WALLET_Instance *h,
* set with #TALER_WALLET_set_message_handler.
*/
int
-TALER_WALLET_send_request(struct TALER_WALLET_Instance *h,
- const char *msg);
+TALER_WALLET_send_request(struct TALER_WALLET_Instance *twi,
+ const char *request);
/**
* Run wallet-core in a thread.
@@ -81,13 +81,13 @@ TALER_WALLET_send_request(struct TALER_WALLET_Instance *h,
* This function creates a new thread and returns immediately.
*/
void
-TALER_WALLET_run(struct TALER_WALLET_Instance *h);
+TALER_WALLET_run(struct TALER_WALLET_Instance *twi);
/**
* Block until the wallet returns.
*/
void
-TALER_WALLET_join(struct TALER_WALLET_Instance *wh);
+TALER_WALLET_join(struct TALER_WALLET_Instance *twi);
/**
* Destroy the wallet handle and free resources associated with it.
@@ -98,6 +98,6 @@ TALER_WALLET_join(struct TALER_WALLET_Instance *wh);
* sent a response to the shutdown message.
*/
void
-TALER_WALLET_destroy(struct TALER_WALLET_Instance *h);
+TALER_WALLET_destroy(struct TALER_WALLET_Instance *twi);
#endif /*_TALER_WALLET_LIB_H */