summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-12-10 08:04:22 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-12-10 08:05:27 -0500
commit067ac6cfa7089d9a55d7ddfbb3db59bb51aec8b8 (patch)
treec88daedfcda91314afe9cfbb077e37f15547d7b8 /include
parentRefactor gdk pixbuf code into shared client lib (diff)
downloadsway-067ac6cfa7089d9a55d7ddfbb3db59bb51aec8b8.tar.gz
sway-067ac6cfa7089d9a55d7ddfbb3db59bb51aec8b8.tar.zst
sway-067ac6cfa7089d9a55d7ddfbb3db59bb51aec8b8.zip
Discover swaylock extension in registry
Diffstat (limited to 'include')
-rw-r--r--include/client/registry.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/client/registry.h b/include/client/registry.h
index 68a9bc02..a6901990 100644
--- a/include/client/registry.h
+++ b/include/client/registry.h
@@ -3,6 +3,7 @@
3 3
4#include <wayland-client.h> 4#include <wayland-client.h>
5#include "wayland-desktop-shell-client-protocol.h" 5#include "wayland-desktop-shell-client-protocol.h"
6#include "wayland-swaylock-client-protocol.h"
6#include "list.h" 7#include "list.h"
7 8
8struct output_state { 9struct output_state {
@@ -19,6 +20,7 @@ struct registry {
19 struct wl_shell *shell; 20 struct wl_shell *shell;
20 struct wl_shm *shm; 21 struct wl_shm *shm;
21 struct desktop_shell *desktop_shell; 22 struct desktop_shell *desktop_shell;
23 struct lock *swaylock;
22 list_t *outputs; 24 list_t *outputs;
23}; 25};
24 26