#ifndef SINK_H #define SINK_H #include #include typedef struct _sink_info { guint32 index; gchar* name; gchar* device; gint mute; guint8 channels; pa_volume_t vol; GList *input_list; } sink_info; typedef struct _sink_input_info { guint32 index; guint32 sink; gchar *name; gchar *pid; // maybe useless?!!? gint mute; guint8 channels; pa_volume_t vol; // TOTO: exchange with the channel-list } sink_input_info; #endif