summaryrefslogtreecommitdiff
path: root/src/sink.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sink.h')
-rw-r--r--src/sink.h8
1 files changed, 4 insertions, 4 deletions
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 <glib.h>
#include <pulse/pulseaudio.h>
-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