Comment some more files

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@309 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2004-11-21 21:31:28 +00:00
parent 2fb83d13f2
commit 4763ca1376
45 changed files with 428 additions and 81 deletions

View file

@ -25,6 +25,10 @@
#include "core.h"
#include "module.h"
/* Every connection to the server should have a pa_client
* attached. That way the user may generate a listing of all connected
* clients easily and kill them if he wants.*/
struct pa_client {
uint32_t index;
@ -37,6 +41,7 @@ struct pa_client {
void *userdata;
};
/* Protocol name should be something like "ESOUND", "NATIVE", ... */
struct pa_client *pa_client_new(struct pa_core *c, const char *protocol_name, char *name);
/* This function should be called only by the code that created the client */
@ -46,6 +51,7 @@ void pa_client_free(struct pa_client *c);
* request destruction of the client */
void pa_client_kill(struct pa_client *c);
/* Rename the client */
void pa_client_set_name(struct pa_client *c, const char *name);
#endif