Add glib main loop integration, use it in flower client.

This commit is contained in:
Kristian Høgsberg 2008-11-07 14:27:23 -05:00
parent 7f77bd8fbe
commit fb59084fbf
9 changed files with 194 additions and 93 deletions

10
wayland-glib.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef _WAYLAND_GLIB_H_
#define _WAYLAND_GLIB_H_
#include <glib/gmain.h>
typedef struct _WaylandSource WaylandSource;
GSource *wayland_source_new(struct wl_display *display);
#endif