Exemplo n.º 1
0
thex_rx_error(void *o, const char *reason, ...)
{
	struct thex_download *ctx = o;
	va_list args;

	va_start(args, reason);
	download_stop_v(ctx->owner, GTA_DL_ERROR, reason, args);
	va_end(args);
}
Exemplo n.º 2
0
static G_GNUC_PRINTF(2, 3) void
thex_rx_error(gpointer o, const char *reason, ...)
{
	struct thex_download *ctx = o;
	va_list args;

	va_start(args, reason);
	download_stop_v(ctx->owner, GTA_DL_ERROR, reason, args);
	va_end(args);
}
Exemplo n.º 3
0
static G_GNUC_PRINTF(2, 3) void
browse_rx_error(gpointer o, const char *reason, ...)
{
	struct browse_ctx *bc = o;
	va_list args;

	va_start(args, reason);
	download_stop_v(bc->owner, GTA_DL_ERROR, reason, args);
	va_end(args);
}