glib-watch.h 1.8 KB

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