diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-12-19 09:12:29 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-12-19 09:12:29 +0100 |
commit | 6052d2762d0ac8d76e11e2126f51f33e5fe5a6b7 (patch) | |
tree | 87ac1ba5e253dd2147f52818157bacad8f67e514 /src/sink.h | |
parent | e9f4a40262232e5687711c6325421cfd4c69065f (diff) | |
download | pa-sink-ctl-6052d2762d0ac8d76e11e2126f51f33e5fe5a6b7.tar.gz pa-sink-ctl-6052d2762d0ac8d76e11e2126f51f33e5fe5a6b7.tar.bz2 pa-sink-ctl-6052d2762d0ac8d76e11e2126f51f33e5fe5a6b7.zip |
Let sinks & sources and sink_inputs & source_outputs use same types
Diffstat (limited to 'src/sink.h')
-rw-r--r-- | src/sink.h | 25 |
1 files changed, 0 insertions, 25 deletions
@@ -47,38 +47,13 @@ struct vol_ctl { struct main_ctl { struct vol_ctl base; gint priority; - struct context *ctx; GList **childs_list; }; -struct sink { - struct vol_ctl base; - gint priority; - struct context *ctx; - GList **childs_list; -}; - -struct sink_input { - struct vol_ctl base; - guint32 sink; -}; - struct slave_ctl { struct vol_ctl base; guint32 parent_index; }; -struct source_output { - struct vol_ctl base; - guint32 source; -}; - -struct source { - struct vol_ctl base; - gint priority; - struct context *ctx; - GList **childs_list; -}; - #endif |