示例#1
0
文件: dbmw.c 项目: Haxe/gtk-gnutella
/**
 * 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);
}
示例#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);
}
示例#3
0
文件: dbmw.c 项目: Haxe/gtk-gnutella
/**
 * 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);
}
示例#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);
}