mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
esound protocol
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@40 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
a74cd2a1bd
commit
ef422fa4ae
18 changed files with 806 additions and 46 deletions
|
|
@ -60,3 +60,9 @@ char *client_list_to_string(struct core *c) {
|
|||
return strbuf_tostring_free(s);
|
||||
}
|
||||
|
||||
|
||||
void client_rename(struct client *c, const char *name) {
|
||||
assert(c);
|
||||
free(c->name);
|
||||
c->name = name ? strdup(name) : NULL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue