mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2026-05-29 18:18:16 +02:00
15 lines
333 B
C
15 lines
333 B
C
|
|
#ifndef fooglibmainloophfoo
|
||
|
|
#define fooglibmainloophfoo
|
||
|
|
|
||
|
|
#include <glib.h>
|
||
|
|
|
||
|
|
#include "mainloop-api.h"
|
||
|
|
|
||
|
|
struct pa_glib_mainloop;
|
||
|
|
|
||
|
|
struct pa_glib_mainloop *pa_glib_mainloop_new(GMainLoop *ml);
|
||
|
|
void pa_glib_mainloop_free(struct pa_glib_mainloop* g);
|
||
|
|
struct pa_mainloop_api* pa_glib_mainloop_get_api(struct pa_glib_mainloop *g);
|
||
|
|
|
||
|
|
#endif
|