diff options
Diffstat (limited to 'polyp/client.h')
-rw-r--r-- | polyp/client.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/polyp/client.h b/polyp/client.h index 2a3a09e0..082dc29f 100644 --- a/polyp/client.h +++ b/polyp/client.h @@ -32,17 +32,16 @@ struct pa_client { uint32_t index; - pa_typeid_t typeid; struct pa_module *owner; - char *name; + char *name, *driver; struct pa_core *core; void (*kill)(struct pa_client *c); void *userdata; }; -struct pa_client *pa_client_new(struct pa_core *c, pa_typeid_t typeid, const char *name); +struct pa_client *pa_client_new(struct pa_core *c, const char *name, const char *driver); /* This function should be called only by the code that created the client */ void pa_client_free(struct pa_client *c); |