aboutsummaryrefslogtreecommitdiff
path: root/include/wayland.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-05-31 16:24:32 -0400
committerDrew DeVault <sir@cmpwn.com>2017-05-31 16:24:32 -0400
commite2ee67125e076af9be1f115051c680f6e3b69be5 (patch)
tree6031b58a5fa077829f07b86d05d54a461a724f27 /include/wayland.h
parentc7f6981d9cdbdb27c415071487ad7974e5b1a94a (diff)
s/wayland.h/types.h/g
Diffstat (limited to 'include/wayland.h')
-rw-r--r--include/wayland.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/wayland.h b/include/wayland.h
deleted file mode 100644
index ca79fe33..00000000
--- a/include/wayland.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef _WLR_WAYLAND_INTERNAL_H
-#define _WLR_WAYLAND_INTERNAL_H
-
-#include <wayland-server.h>
-#include <wlr/wayland.h>
-#include <stdbool.h>
-
-struct wlr_output_impl {
- bool (*set_mode)(struct wlr_output_state *state, struct wlr_output_mode *mode);
- void (*enable)(struct wlr_output_state *state, bool enable);
- void (*destroy)(struct wlr_output_state *state);
-};
-
-struct wlr_output *wlr_output_create(struct wlr_output_impl *impl,
- struct wlr_output_state *state);
-void wlr_output_free(struct wlr_output *output);
-
-#endif