]> git.meshlink.io Git - catta/blob - avahi-glib/glib-watch.h
ffc3aacc69acbd175b838feaed3ec2ee45f4b107
[catta] / avahi-glib / glib-watch.h
1 #ifndef fooglibwatchhfoo
2 #define fooglibwatchhfoo
3
4 /***
5   This file is part of avahi.
6
7   avahi is free software; you can redistribute it and/or modify it
8   under the terms of the GNU Lesser General Public License as
9   published by the Free Software Foundation; either version 2.1 of the
10   License, or (at your option) any later version.
11
12   avahi is distributed in the hope that it will be useful, but WITHOUT
13   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
15   Public License for more details.
16
17   You should have received a copy of the GNU Lesser General Public
18   License along with avahi; if not, write to the Free Software
19   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20   USA.
21 ***/
22
23 /** \file glib-watch.h GLib main loop adapter */
24
25 /** \example glib-integration.c Example of how to integrate
26  * avahi use with GLIB/GTK applications */
27
28 #include <glib.h>
29
30 #include <avahi-common/cdecl.h>
31 #include <avahi-common/watch.h>
32
33 AVAHI_C_DECL_BEGIN
34
35 /** GLib main loop adapter. You can safely cast this into a GSource */
36 typedef struct AvahiGLibPoll AvahiGLibPoll;
37
38 /** Create a new GLib main loop adapter attached to the specified
39  context. If context is NULL, the default main loop context is
40  used. You can attach as many AvahiGLibPoll objects to the same context
41  as you want. priority takes one of GLib's G_PRIORITY constants. */
42 AvahiGLibPoll *avahi_glib_poll_new(GMainContext *context, gint priority);
43
44 /** Free  GLib main loop adapter */
45 void avahi_glib_poll_free(AvahiGLibPoll *g);
46
47 /** Return the abstract poll API structure for this object. This will
48  * return the same pointer to a internally allocated structure on each
49  * call */
50 const AvahiPoll *avahi_glib_poll_get(AvahiGLibPoll *g);
51
52 AVAHI_C_DECL_END
53
54 #endif