summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-02-16 23:52:12 +0100
committerChristian Grothoff <christian@grothoff.org>2019-02-16 23:52:12 +0100
commit9413537e6d5390a535faa1d5a870389295effbaf (patch)
tree00913c09193a2cfe0dc631491aae37349fa6ede2
parentffd7a343a634154b803838e7339a71754e369168 (diff)
downloadexchange-9413537e6d5390a535faa1d5a870389295effbaf.tar.gz
exchange-9413537e6d5390a535faa1d5a870389295effbaf.tar.bz2
exchange-9413537e6d5390a535faa1d5a870389295effbaf.zip
add missing comments
-rw-r--r--src/exchangedb/plugin_exchangedb_postgres.c10
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;
};