]> code.delx.au - pulseaudio/blob - src/pulse/client-conf.h
Add copyright notices to all relevant files. (based on svn log)
[pulseaudio] / src / pulse / client-conf.h
1 #ifndef fooclientconfhfoo
2 #define fooclientconfhfoo
3
4 /* $Id$ */
5
6 /***
7 This file is part of PulseAudio.
8
9 Copyright 2004-2006 Lennart Poettering
10
11 PulseAudio is free software; you can redistribute it and/or modify
12 it under the terms of the GNU Lesser General Public License as published
13 by the Free Software Foundation; either version 2 of the License,
14 or (at your option) any later version.
15
16 PulseAudio is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU Lesser General Public License
22 along with PulseAudio; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24 USA.
25 ***/
26
27 #include <pulsecore/native-common.h>
28
29 /* A structure containing configuration data for PulseAudio clients. */
30
31 typedef struct pa_client_conf {
32 char *daemon_binary, *extra_arguments, *default_sink, *default_source, *default_server, *cookie_file;
33 int autospawn, disable_shm;
34 uint8_t cookie[PA_NATIVE_COOKIE_LENGTH];
35 int cookie_valid; /* non-zero, when cookie is valid */
36 } pa_client_conf;
37
38 /* Create a new configuration data object and reset it to defaults */
39 pa_client_conf *pa_client_conf_new(void);
40 void pa_client_conf_free(pa_client_conf *c);
41
42 /* Load the configuration data from the speicified file, overwriting
43 * the current settings in *c. When the filename is NULL, the
44 * default client configuration file name is used. */
45 int pa_client_conf_load(pa_client_conf *c, const char *filename);
46
47 /* Load the configuration data from the environment of the current
48 process, overwriting the current settings in *c. */
49 int pa_client_conf_env(pa_client_conf *c);
50
51 /* Load cookie data from c->cookie_file into c->cookie */
52 int pa_client_conf_load_cookie(pa_client_conf* c);
53
54 #endif