diff options
| author | Christian Grothoff <christian@grothoff.org> | 2019-02-16 23:52:12 +0100 | 
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2019-02-16 23:52:12 +0100 | 
| commit | 9413537e6d5390a535faa1d5a870389295effbaf (patch) | |
| tree | 00913c09193a2cfe0dc631491aae37349fa6ede2 | |
| parent | ffd7a343a634154b803838e7339a71754e369168 (diff) | |
add missing comments
| -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 506d34b0..6aec3711 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;  }; | 
