]> code.delx.au - pulseaudio/blob - src/pulse/subscribe.h
0e4be8c371feb9151df8d0ceb1470fcaa568ebdd
[pulseaudio] / src / pulse / subscribe.h
1 #ifndef foosubscribehfoo
2 #define foosubscribehfoo
3
4 /***
5 This file is part of PulseAudio.
6
7 Copyright 2004-2006 Lennart Poettering
8 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
9
10 PulseAudio is free software; you can redistribute it and/or modify
11 it under the terms of the GNU Lesser General Public License as published
12 by the Free Software Foundation; either version 2 of the License,
13 or (at your option) any later version.
14
15 PulseAudio is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with PulseAudio; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 USA.
24 ***/
25
26 #include <inttypes.h>
27
28 #include <pulse/def.h>
29 #include <pulse/context.h>
30 #include <pulse/cdecl.h>
31
32 /** \page subscribe Event Subscription
33 *
34 * \section overv_sec Overview
35 *
36 * The application can be notified, asynchronously, whenever the internal
37 * layout of the server changes. Possible notifications are desribed in the
38 * \ref pa_subscription_event_type and \ref pa_subscription_mask
39 * enumerations.
40 *
41 * The application sets the notification mask using pa_context_subscribe()
42 * and the function that will be called whenever a notification occurs using
43 * pa_context_set_subscribe_callback().
44 */
45
46 /** \file
47 * Daemon introspection event subscription subsystem. */
48
49 PA_C_DECL_BEGIN
50
51 /** Subscription event callback prototype */
52 typedef void (*pa_context_subscribe_cb_t)(pa_context *c, pa_subscription_event_type_t t, uint32_t idx, void *userdata);
53
54 /** Enable event notification */
55 pa_operation* pa_context_subscribe(pa_context *c, pa_subscription_mask_t m, pa_context_success_cb_t cb, void *userdata);
56
57 /** Set the context specific call back function that is called whenever the state of the daemon changes */
58 void pa_context_set_subscribe_callback(pa_context *c, pa_context_subscribe_cb_t cb, void *userdata);
59
60 PA_C_DECL_END
61
62 #endif