summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/client.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-01-15 18:38:20 +0100
committerLennart Poettering <lennart@poettering.net>2009-01-15 18:38:20 +0100
commit344c934edbd780e1efe9ac413402ee6d70fe29e3 (patch)
tree900bc4b3ca7621ffae2466ac56354f7c02aae02c /src/pulsecore/client.h
parentb6deb0cc4c169b5ef9450586fc66b0b823ef249c (diff)
maintain a list of sink inputs/source outputs as part of the pa_client object
Diffstat (limited to 'src/pulsecore/client.h')
-rw-r--r--src/pulsecore/client.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pulsecore/client.h b/src/pulsecore/client.h
index 8e72f323..48e9bc7a 100644
--- a/src/pulsecore/client.h
+++ b/src/pulsecore/client.h
@@ -42,6 +42,9 @@ struct pa_client {
pa_module *module;
char *driver;
+ pa_idxset *sink_inputs;
+ pa_idxset *source_outputs;
+
void *userdata;
void (*kill)(pa_client *c);