From 0cd9f7602fe16b52cf728d4b1b52650fff338efd Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Tue, 13 Dec 2011 08:29:11 +0100 Subject: sink: Remove struct typedefs --- src/sink.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/sink.h') diff --git a/src/sink.h b/src/sink.h index 7f2b5e7..a8ec257 100644 --- a/src/sink.h +++ b/src/sink.h @@ -23,16 +23,16 @@ #include #include -typedef struct _sink_info { +struct sink_info { guint32 index; gchar* name; gint mute; guint8 channels; pa_volume_t vol; gint priority; -} sink_info; +}; -typedef struct _sink_input_info { +struct sink_input_info { guint32 index; guint32 sink; gchar *name; @@ -40,6 +40,6 @@ typedef struct _sink_input_info { gint mute; guint8 channels; pa_volume_t vol; // TOTO: exchange with the channel-list -} sink_input_info; +}; #endif -- cgit