diff options
Diffstat (limited to 'include/extensions.h')
-rw-r--r-- | include/extensions.h | 13 |
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 @@ #ifndef _SWAY_EXTENSIONS_H #define _SWAY_EXTENSIONS_H +#include "list.h" + +struct background_config { + wlc_handle output; + wlc_handle surface; +}; + +struct desktop_shell_state { + list_t *backgrounds; +}; + +extern struct desktop_shell_state desktop_shell; + void register_extensions(void); #endif |