add missing comments

This commit is contained in:
Christian Grothoff 2019-02-16 23:52:12 +01:00
parent ffd7a343a6
commit 9413537e6d
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

View File

@ -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;
};