summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-08-15 13:48:13 +0200
committerChristian Grothoff <christian@grothoff.org>2022-08-15 13:48:13 +0200
commit96265412cd15bbf44447139dca2dff1f2f871cbb (patch)
treea1366370ede8038e55665c9f88bd7ab5dc3ebf5c /src/include
parent39640c33395744bfa3679ea6923b46ef6881e315 (diff)
downloadexchange-96265412cd15bbf44447139dca2dff1f2f871cbb.tar.gz
exchange-96265412cd15bbf44447139dca2dff1f2f871cbb.tar.bz2
exchange-96265412cd15bbf44447139dca2dff1f2f871cbb.zip
(preliminary) work on kycaid plugin
Diffstat (limited to 'src/include')
-rw-r--r--src/include/taler_exchangedb_plugin.h4
-rw-r--r--src/include/taler_kyclogic_plugin.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h
index f7886a418..602448f70 100644
--- a/src/include/taler_exchangedb_plugin.h
+++ b/src/include/taler_exchangedb_plugin.h
@@ -5675,6 +5675,7 @@ struct TALER_EXCHANGEDB_Plugin
* @param provider_section
* @param provider_legitimization_id legi to look up
* @param[out] h_payto where to write the result
+ * @param[out] legi_row where to write the row of the entry
* @return database transaction status
*/
enum GNUNET_DB_QueryStatus
@@ -5682,7 +5683,8 @@ struct TALER_EXCHANGEDB_Plugin
void *cls,
const char *provider_section,
const char *provider_legitimization_id,
- struct TALER_PaytoHashP *h_payto);
+ struct TALER_PaytoHashP *h_payto,
+ uint64_t *legi_row);
/**
diff --git a/src/include/taler_kyclogic_plugin.h b/src/include/taler_kyclogic_plugin.h
index f41944715..7c0ebbc43 100644
--- a/src/include/taler_kyclogic_plugin.h
+++ b/src/include/taler_kyclogic_plugin.h
@@ -210,6 +210,7 @@ typedef void
* @param provider_section
* @param provider_legitimization_id legi to look up
* @param[out] h_payto where to write the result
+ * @param[out] legi_row where to write the row of the entry
* @return database transaction status
*/
typedef enum GNUNET_DB_QueryStatus
@@ -217,7 +218,8 @@ typedef enum GNUNET_DB_QueryStatus
void *cls,
const char *provider_section,
const char *provider_legitimization_id,
- struct TALER_PaytoHashP *h_payto);
+ struct TALER_PaytoHashP *h_payto,
+ uint64_t *legi_row);
/**