Example #1
0
/**
 * Trampoline to invoke the map iterator and do the proper casts.
 */
static gboolean
dbmw_foreach_remove_trampoline(gpointer key, dbmap_datum_t *d, gpointer arg)
{
	return dbmw_foreach_common(TRUE, key, d, arg);
}
Example #2
0
/**
 * Trampoline to invoke the map iterator and do the proper casts.
 */
static bool
dbmw_foreach_remove_trampoline(void *key, dbmap_datum_t *d, void *arg)
{
	return dbmw_foreach_common(TRUE, key, d, arg);
}
Example #3
0
/**
 * Trampoline to invoke the DB map iterator and do the proper casts.
 */
static void
dbmw_foreach_trampoline(gpointer key, dbmap_datum_t *d, gpointer arg)
{
	dbmw_foreach_common(FALSE, key, d, arg);
}
Example #4
0
/**
 * Trampoline to invoke the DB map iterator and do the proper casts.
 */
static void
dbmw_foreach_trampoline(void *key, dbmap_datum_t *d, void *arg)
{
	dbmw_foreach_common(FALSE, key, d, arg);
}