diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/exchangedb/plugin_exchangedb_postgres.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c index 506d34b0a..6aec37110 100644 --- a/src/exchangedb/plugin_exchangedb_postgres.c +++ b/src/exchangedb/plugin_exchangedb_postgres.c @@ -2007,9 +2007,19 @@ postgres_get_denomination_info (void *cls, } +/** + * Closure for #domination_cb_helper() + */ struct DenomIteratorContext { + /** + * Function to call with the results. + */ TALER_EXCHANGEDB_DenominationInfoIterator cb; + + /** + * Closure to pass to @e cb + */ void *cb_cls; }; |