1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:27:43 +00:00

WindowServer: Post error messages to clients on protocol failure.

This commit is contained in:
Andreas Kling 2019-02-14 09:32:34 +01:00
parent f33f094483
commit 222a6f7bbc
4 changed files with 53 additions and 17 deletions

View file

@ -51,6 +51,8 @@ private:
void handle_request(WSAPIReleaseWindowBackingStoreRequest&);
void handle_request(WSAPISetGlobalCursorTrackingRequest&);
void post_error(const String&);
int m_client_id { 0 };
HashMap<int, OwnPtr<WSWindow>> m_windows;