]> code.delx.au - pulseaudio/blob - polyp/glib-mainloop.h
afc83be2623ccb09d56bb06f746482ba3704c6cd
[pulseaudio] / polyp / glib-mainloop.h
1 #ifndef fooglibmainloophfoo
2 #define fooglibmainloophfoo
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 <glib.h>
26
27 #include "mainloop-api.h"
28 #include "cdecl.h"
29
30 /** \file
31 * GLIB main loop support */
32
33 PA_C_DECL_BEGIN
34
35 /** \struct pa_glib_mainloop
36 * An opaque GLIB main loop object */
37 struct pa_glib_mainloop;
38
39 /** Create a new GLIB main loop object for the specified GLIB main loop context. If c is NULL the default context is used. */
40 #if GLIB_MAJOR_VERSION >= 2
41 struct pa_glib_mainloop *pa_glib_mainloop_new(GMainContext *c);
42 #else
43 struct pa_glib_mainloop *pa_glib_mainloop_new(void);
44 #endif
45
46
47 /** Free the GLIB main loop object */
48 void pa_glib_mainloop_free(struct pa_glib_mainloop* g);
49
50 /** Return the abstract main loop API vtable for the GLIB main loop object */
51 struct pa_mainloop_api* pa_glib_mainloop_get_api(struct pa_glib_mainloop *g);
52
53 PA_C_DECL_END
54
55 #endif