]> code.delx.au - pulseaudio/blob - polyp/core.h
a85dafd4cadf56a35a7b9f038e558f301a38a9c1
[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 #include "memblock.h"
30
31 struct pa_core {
32 struct pa_mainloop_api *mainloop;
33
34 struct pa_idxset *clients, *sinks, *sources, *sink_inputs, *source_outputs, *modules, *scache;
35
36 struct pa_hashmap *namereg, *autoload_hashmap;
37
38 char *default_source_name, *default_sink_name;
39
40 struct pa_sample_spec default_sample_spec;
41 struct pa_time_event *auto_unload_event;
42
43 struct pa_defer_event *subscription_defer_event;
44 struct pa_queue *subscription_event_queue;
45 struct pa_subscription *subscriptions;
46
47 struct pa_memblock_stat *memblock_stat;
48
49 int disallow_module_loading;
50 int exit_idle_time, module_idle_time;
51
52 struct pa_time_event *quit_event;
53 };
54
55 struct pa_core* pa_core_new(struct pa_mainloop_api *m);
56 void pa_core_free(struct pa_core*c);
57 void pa_core_check_quit(struct pa_core *c);
58
59 #endif