diff options
Diffstat (limited to 'WindowServer/WSClientConnection.h')
-rw-r--r-- | WindowServer/WSClientConnection.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/WindowServer/WSClientConnection.h b/WindowServer/WSClientConnection.h index ee4512ec71..8eda8159d6 100644 --- a/WindowServer/WSClientConnection.h +++ b/WindowServer/WSClientConnection.h @@ -9,6 +9,7 @@ class WSWindow; class WSMenu; class WSMenuBar; +struct GUI_ServerMessage; // FIXME: Remove. class Process; @@ -21,6 +22,8 @@ public: static WSClientConnection* from_client_id(int client_id); static WSClientConnection* ensure_for_client_id(int client_id); + void post_message(GUI_ServerMessage&&); + // FIXME: Remove. Process* process() { return m_process.ptr(); } |