blob: b2195891712ca7880a48b2caa5bf74aab06f6d10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef __WAYLAND_SOURCE_H__
#define __WAYLAND_SOURCE_H__
#include <glib-object.h>
G_BEGIN_DECLS
typedef struct _WLSource WLSource;
WLSource* wl_source_new();
void wl_source_free(WLSource* self);
struct wl_display* wl_source_get_display(WLSource* source);
G_END_DECLS
#endif /* __WAYLAND_SOURCE_H__ */
|