2004-06-08 23:54:24 +00:00
|
|
|
#ifndef fooclienthfoo
|
|
|
|
|
#define fooclienthfoo
|
|
|
|
|
|
2004-07-16 19:56:36 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2004-07-16 19:56:36 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2004-07-16 19:56:36 +00:00
|
|
|
by the Free Software Foundation; either version 2 of the License,
|
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-07-16 19:56:36 +00:00
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
along with PulseAudio; if not, write to the Free Software
|
2004-07-16 19:56:36 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/core.h>
|
|
|
|
|
#include <pulsecore/module.h>
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-11-21 21:31:28 +00:00
|
|
|
/* 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.*/
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
typedef struct pa_client pa_client;
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_client {
|
2004-06-08 23:54:24 +00:00
|
|
|
uint32_t index;
|
2004-06-15 17:05:03 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_module *owner;
|
2006-01-27 16:25:31 +00:00
|
|
|
char *name, *driver;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_core *core;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void (*kill)(pa_client *c);
|
2004-06-15 17:05:03 +00:00
|
|
|
void *userdata;
|
2004-06-08 23:54:24 +00:00
|
|
|
};
|
|
|
|
|
|
2006-05-14 00:36:06 +00:00
|
|
|
pa_client *pa_client_new(pa_core *c, const char *driver, const char *name);
|
2004-06-14 20:30:50 +00:00
|
|
|
|
|
|
|
|
/* This function should be called only by the code that created the client */
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_client_free(pa_client *c);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-06-14 20:30:50 +00:00
|
|
|
/* Code that didn't create the client should call this function to
|
|
|
|
|
* request destruction of the client */
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_client_kill(pa_client *c);
|
2004-06-14 20:30:50 +00:00
|
|
|
|
2004-11-21 21:31:28 +00:00
|
|
|
/* Rename the client */
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_client_set_name(pa_client *c, const char *name);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
#endif
|