From 1d09ceecefe1a9a18addf2f9a42294075bc190c2 Mon Sep 17 00:00:00 2001 From: Jan Klemkow Date: Thu, 8 Jul 2010 22:29:00 +0200 Subject: splitting project into seperat files --- sink_input.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 sink_input.h (limited to 'sink_input.h') diff --git a/sink_input.h b/sink_input.h new file mode 100644 index 0000000..e426cf7 --- /dev/null +++ b/sink_input.h @@ -0,0 +1,23 @@ +#ifndef SINK_INPUT_H +#define SINK_INPUT_H + +#include +// TODO: change this with the given define from pulselib +#define VOLUME_MAX UINT16_MAX + +typedef struct _sink_input_info { + uint32_t index; + uint32_t sink; + char *name; + char *pid; // maybe useless?!!? + pa_volume_t vol; // TOTO: exchange with the channel-list +} sink_input_info; + +sink_input_info* sink_input_init(); +void sink_input_clear(sink_input_info*); + +void sink_input_list_init(sink_input_info**, int); +void sink_input_list_clear(sink_input_info**, int*); +int cmp_sink_input_list(const void *, const void *); + +#endif -- cgit