Add copyright notices to all relevant files. (based on svn log)
[profile/ivi/pulseaudio.git] / src / pulsecore / hook-list.h
1 #ifndef foohooklistfoo
2 #define foohooklistfoo
3
4 /* $Id$ */
5
6 /***
7   This file is part of PulseAudio.
8
9   Copyright 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
13   published by the Free Software Foundation; either version 2 of the
14   License, 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
22   License 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/llist.h>
28 #include <pulse/xmalloc.h>
29 #include <pulsecore/gccmacro.h>
30
31 typedef struct pa_hook_slot pa_hook_slot;
32 typedef struct pa_hook pa_hook;
33
34 typedef enum pa_hook_result {
35     PA_HOOK_OK = 0,
36     PA_HOOK_STOP = 1,
37     PA_HOOK_CANCEL = -1
38 } pa_hook_result_t;
39
40 typedef pa_hook_result_t (*pa_hook_cb_t)(
41         void *hook_data,
42         void *call_data,
43         void *slot_data);
44
45 struct pa_hook_slot {
46     int dead;
47     pa_hook *hook;
48     pa_hook_cb_t callback;
49     void *data;
50     PA_LLIST_FIELDS(pa_hook_slot);
51 };
52
53 struct pa_hook {
54     PA_LLIST_HEAD(pa_hook_slot, slots);
55     pa_hook_slot *last;
56     int firing, n_dead;
57
58     void *data;
59 };
60
61 void pa_hook_init(pa_hook *hook, void *data);
62 void pa_hook_free(pa_hook *hook);
63
64 pa_hook_slot* pa_hook_connect(pa_hook *hook, pa_hook_cb_t, void *data);
65 void pa_hook_slot_free(pa_hook_slot *slot);
66
67 pa_hook_result_t pa_hook_fire(pa_hook *hook, void *data);
68
69 #endif