mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-31 22:25:33 -04:00
fix glib mainloop support git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@106 fefdeb5f-60dc-0310-8127-8f9354f1896f
23 lines
413 B
C
23 lines
413 B
C
#ifndef fooglibmainloophfoo
|
|
#define fooglibmainloophfoo
|
|
|
|
#include <glib.h>
|
|
|
|
#include "mainloop-api.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct pa_glib_mainloop;
|
|
|
|
struct pa_glib_mainloop *pa_glib_mainloop_new(GMainContext *c);
|
|
void pa_glib_mainloop_free(struct pa_glib_mainloop* g);
|
|
struct pa_mainloop_api* pa_glib_mainloop_get_api(struct pa_glib_mainloop *g);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|