summaryrefslogtreecommitdiffstats
path: root/include/extensions.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/extensions.h')
-rw-r--r--include/extensions.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/extensions.h b/include/extensions.h
index e122c59a..3e2d1cde 100644
--- a/include/extensions.h
+++ b/include/extensions.h
@@ -1,6 +1,19 @@
1#ifndef _SWAY_EXTENSIONS_H 1#ifndef _SWAY_EXTENSIONS_H
2#define _SWAY_EXTENSIONS_H 2#define _SWAY_EXTENSIONS_H
3 3
4#include "list.h"
5
6struct background_config {
7 wlc_handle output;
8 wlc_handle surface;
9};
10
11struct desktop_shell_state {
12 list_t *backgrounds;
13};
14
15extern struct desktop_shell_state desktop_shell;
16
4void register_extensions(void); 17void register_extensions(void);
5 18
6#endif 19#endif