summaryrefslogtreecommitdiff
path: root/userland/windowserver/ws.h
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2023-10-23 17:49:31 +0200
committerAnton Kling <anton@kling.gg>2023-10-23 17:49:31 +0200
commit6382172ac01ef17913c54177e556706d6ae2ec7f (patch)
tree90b88b30bc7e6fb085ac2f24b34a859b0650ba4c /userland/windowserver/ws.h
parent64485df0e87a24275f5bd1df139052a95cee924c (diff)
WindowServer: Draw a border around the active window
Diffstat (limited to 'userland/windowserver/ws.h')
-rw-r--r--userland/windowserver/ws.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/windowserver/ws.h b/userland/windowserver/ws.h
index 80f4726..9236e01 100644
--- a/userland/windowserver/ws.h
+++ b/userland/windowserver/ws.h
@@ -23,6 +23,7 @@ typedef struct {
uint8_t border_size;
uint8_t border_color;
uint8_t wallpaper_color;
+ WINDOW *active_window;
WINDOW **windows;
} DISPLAY;
#endif