glib-mainloop.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #ifndef fooglibmainloophfoo
  2. #define fooglibmainloophfoo
  3. /***
  4. This file is part of PulseAudio.
  5. Copyright 2004-2006 Lennart Poettering
  6. Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
  7. PulseAudio is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU Lesser General Public License as published
  9. by the Free Software Foundation; either version 2.1 of the License,
  10. or (at your option) any later version.
  11. PulseAudio is distributed in the hope that it will be useful, but
  12. WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. General Public License for more details.
  15. You should have received a copy of the GNU Lesser General Public License
  16. along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
  17. ***/
  18. #include <glib.h>
  19. #include <pulse/mainloop-api.h>
  20. #include <pulse/cdecl.h>
  21. #include <pulse/version.h>
  22. /** \page glib-mainloop GLIB Main Loop Bindings
  23. *
  24. * \section overv_sec Overview
  25. *
  26. * The GLIB main loop bindings are extremely easy to use. All that is
  27. * required is to create a pa_glib_mainloop object using
  28. * pa_glib_mainloop_new(). When the main loop abstraction is needed, it is
  29. * provided by pa_glib_mainloop_get_api().
  30. *
  31. */
  32. /** \file
  33. * GLIB main loop support
  34. *
  35. * See also \subpage glib-mainloop
  36. */
  37. PA_C_DECL_BEGIN
  38. /** An opaque GLIB main loop object */
  39. typedef struct pa_glib_mainloop pa_glib_mainloop;
  40. /** Create a new GLIB main loop object for the specified GLIB main
  41. * loop context. Takes an argument c for the
  42. * GMainContext to use. If c is NULL the default context is used. */
  43. pa_glib_mainloop *pa_glib_mainloop_new(GMainContext *c);
  44. /** Free the GLIB main loop object */
  45. void pa_glib_mainloop_free(pa_glib_mainloop* g);
  46. /** Return the abstract main loop API vtable for the GLIB main loop
  47. object. No need to free the API as it is owned by the loop
  48. and is destroyed when the loop is freed. */
  49. pa_mainloop_api* pa_glib_mainloop_get_api(pa_glib_mainloop *g);
  50. PA_C_DECL_END
  51. #endif