diff options
author | Kirill Primak <vyivel@eclair.cafe> | 2023-06-05 23:45:28 +0300 |
---|---|---|
committer | Alexander Orzechowski <alex@ozal.ski> | 2023-06-05 21:06:19 +0000 |
commit | 3dc646ea889084cd7aa980f38124b5df548cf10d (patch) | |
tree | 1ee02a0e22793f8c6d7efb4b08d8a66aa8ba4d2c /include/xwayland | |
parent | c5f4df6c961abef073414e14388878df8cd16947 (diff) |
Add some missing includes/declarations
Diffstat (limited to 'include/xwayland')
-rw-r--r-- | include/xwayland/selection.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/xwayland/selection.h b/include/xwayland/selection.h index 07659cfd..30831023 100644 --- a/include/xwayland/selection.h +++ b/include/xwayland/selection.h @@ -1,7 +1,9 @@ #ifndef XWAYLAND_SELECTION_H #define XWAYLAND_SELECTION_H +#include <stdbool.h> #include <xcb/xfixes.h> +#include <wayland-util.h> #define INCR_CHUNK_SIZE (64 * 1024) @@ -11,6 +13,9 @@ struct wlr_primary_selection_source; struct wlr_xwm_selection; +struct wlr_drag; +struct wlr_data_source; + struct wlr_xwm_selection_transfer { struct wlr_xwm_selection *selection; |