From 188753300e7df553dead75b7b5561f8ee683f7df Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Fri, 21 Oct 2011 14:37:58 +0200 Subject: Store all input_infos in one big list This makes the lookup routines independent of each other, which allows gradual updates later. --- src/pa-sink-ctl.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/pa-sink-ctl.h') diff --git a/src/pa-sink-ctl.h b/src/pa-sink-ctl.h index 2539ea3..172bfcd 100644 --- a/src/pa-sink-ctl.h +++ b/src/pa-sink-ctl.h @@ -25,12 +25,14 @@ struct context { guint max_name_len; - gboolean info_callbacks_finished; + int info_callbacks_finished; gboolean info_callbacks_blocked; GMainLoop *loop; GList *sink_list; + GList *input_list; GList *tmp_sinks; + GList *tmp_inputs; gchar *status; }; -- cgit