]> code.delx.au - pulseaudio/blob - polyp/autoload.h
ec7d38f1058fa23aae780c84902a107e6759eb19
[pulseaudio] / polyp / autoload.h
1 #ifndef fooautoloadhfoo
2 #define fooautoloadhfoo
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 "namereg.h"
26
27 struct pa_autoload_entry {
28 struct pa_core *core;
29 uint32_t index;
30 char *name;
31 enum pa_namereg_type type;
32 int in_action;
33 char *module, *argument;
34 };
35
36 int pa_autoload_add(struct pa_core *c, const char*name, enum pa_namereg_type type, const char*module, const char *argument, uint32_t *index);
37 void pa_autoload_free(struct pa_core *c);
38 int pa_autoload_remove_by_name(struct pa_core *c, const char*name, enum pa_namereg_type type);
39 int pa_autoload_remove_by_index(struct pa_core *c, uint32_t index);
40 void pa_autoload_request(struct pa_core *c, const char *name, enum pa_namereg_type type);
41
42 const struct pa_autoload_entry* pa_autoload_get_by_name(struct pa_core *c, const char*name, enum pa_namereg_type type);
43 const struct pa_autoload_entry* pa_autoload_get_by_index(struct pa_core *c, uint32_t index);
44
45 #endif