]> code.delx.au - pulseaudio/blob - polyp/core.h
introduce pa_xmalloc() and friends
[pulseaudio] / polyp / core.h
1 #ifndef foocorehfoo
2 #define foocorehfoo
3
4 /* $Id$ */
5
6 /***
7 This file is part of polypaudio.
8
9 polypaudio is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published
11 by the Free Software Foundation; either version 2 of the License,
12 or (at your option) any later version.
13
14 polypaudio is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with polypaudio; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 USA.
23 ***/
24
25 #include "idxset.h"
26 #include "hashmap.h"
27 #include "mainloop-api.h"
28 #include "sample.h"
29
30 struct pa_core {
31 struct pa_mainloop_api *mainloop;
32
33 struct pa_idxset *clients, *sinks, *sources, *sink_inputs, *source_outputs, *modules, *scache_idxset;
34
35 struct pa_hashmap *namereg, *scache_hashmap, *autoload_hashmap;
36
37 char *default_source_name, *default_sink_name;
38
39 struct pa_sample_spec default_sample_spec;
40 int auto_unload_time;
41 void *auto_unload_mainloop_source;
42 };
43
44 struct pa_core* pa_core_new(struct pa_mainloop_api *m);
45 void pa_core_free(struct pa_core*c);
46
47 #endif