commit liboil porting changes

git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/liboil-test@344 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2005-09-15 23:42:56 +00:00
parent 0c9873e5b3
commit e1f008f2a3
23 changed files with 917 additions and 232 deletions

View file

@ -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);