diff options
author | Anton Kling <anton@kling.gg> | 2023-11-18 00:38:31 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-18 00:38:31 +0100 |
commit | 02f427a6cae9b2e9d26f7beb6fd9f1f57367044c (patch) | |
tree | 0748cfd39a0e724e57974d8eefe4f958923992be /userland/windowserver/ws.h | |
parent | 01a9392ad6051878e217bffeffd6261ccf994c42 (diff) |
WindowServer: Implement window resizing.
Currently no event is sent to a client that a window is resized. This
should be added when I can bother adding that functionality to the
client applications also.
Diffstat (limited to 'userland/windowserver/ws.h')
-rw-r--r-- | userland/windowserver/ws.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/userland/windowserver/ws.h b/userland/windowserver/ws.h index 6f8eee3..477f123 100644 --- a/userland/windowserver/ws.h +++ b/userland/windowserver/ws.h @@ -14,6 +14,8 @@ typedef struct { int y; int sx; int sy; + int buffer_sx; + int buffer_sy; } WINDOW; typedef struct { |