diff options
| author | Scott Anderson <ascent12@hotmail.com> | 2018-02-19 14:26:40 +1300 | 
|---|---|---|
| committer | Scott Anderson <ascent12@hotmail.com> | 2018-02-19 14:26:40 +1300 | 
| commit | 86269052eb7be715eba274dffc30c77c11b8309c (patch) | |
| tree | 8291d0ee15c75499ad884f629fd630c54f46b8ce /backend/x11 | |
| parent | f27c0b44b882f7a837906e5b3376ad035cb51445 (diff) | |
| download | wlroots-86269052eb7be715eba274dffc30c77c11b8309c.tar.xz | |
Explicitly export EFL symbols
Diffstat (limited to 'backend/x11')
| -rw-r--r-- | backend/x11/backend.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/backend/x11/backend.c b/backend/x11/backend.c index 28a4fcac..72b4b69d 100644 --- a/backend/x11/backend.c +++ b/backend/x11/backend.c @@ -23,6 +23,7 @@  #include <dev/evdev/input-event-codes.h>  #endif  #include "backend/x11.h" +#include "util/defs.h"  #include "util/signal.h"  static struct wlr_backend_impl backend_impl; @@ -289,6 +290,7 @@ static struct wlr_backend_impl backend_impl = {  	.get_renderer = wlr_x11_backend_get_renderer,  }; +WLR_API  bool wlr_backend_is_x11(struct wlr_backend *backend) {  	return backend->impl == &backend_impl;  } @@ -299,6 +301,7 @@ static void handle_display_destroy(struct wl_listener *listener, void *data) {  	wlr_x11_backend_destroy(&x11->backend);  } +WLR_API  struct wlr_backend *wlr_x11_backend_create(struct wl_display *display,  		const char *x11_display) {  	struct wlr_x11_backend *x11 = calloc(1, sizeof(*x11)); @@ -418,10 +421,12 @@ static struct wlr_output_impl output_impl = {  	.swap_buffers = output_swap_buffers,  }; +WLR_API  bool wlr_output_is_x11(struct wlr_output *wlr_output) {  	return wlr_output->impl == &output_impl;  } +WLR_API  bool wlr_input_device_is_x11(struct wlr_input_device *wlr_dev) {  	return wlr_dev->impl == &input_device_impl;  }  | 
