summaryrefslogtreecommitdiff
path: root/river/include/wayland-source.h
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-09-01 03:23:02 +0200
committerAylur <[email protected]>2024-09-01 03:23:02 +0200
commit247ac06b867a20b4c30f3f374a88ebfd40165753 (patch)
tree353b30413810cd1253ddcc1cbcb396d2102f2c5e /river/include/wayland-source.h
parent0a8a39d18bb1c2e36923aa034d03bfd33869dfe8 (diff)
move to monorepo
Diffstat (limited to 'river/include/wayland-source.h')
-rw-r--r--river/include/wayland-source.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/river/include/wayland-source.h b/river/include/wayland-source.h
new file mode 100644
index 0000000..b219589
--- /dev/null
+++ b/river/include/wayland-source.h
@@ -0,0 +1,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__ */