mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:17:35 +00:00
WindowServer: Make window stealing related functions synchronous
This allows us to make sure that those operations are performed in the right order. Affected functions are: - add_window_stealing_for_client - set_window_parent_from_client - remove_window_stealing_for_client - remove_window_stealing
This commit is contained in:
parent
deb525fd9d
commit
1ba9c821fb
1 changed files with 4 additions and 4 deletions
|
@ -176,9 +176,9 @@ endpoint WindowServer
|
|||
|
||||
set_flash_flush(bool enabled) =|
|
||||
|
||||
set_window_parent_from_client(i32 client_id, i32 parent_id, i32 child_id) =|
|
||||
set_window_parent_from_client(i32 client_id, i32 parent_id, i32 child_id) => ()
|
||||
get_window_rect_from_client(i32 client_id, i32 window_id) => (Gfx::IntRect rect)
|
||||
add_window_stealing_for_client(i32 client_id, i32 window_id) =|
|
||||
remove_window_stealing_for_client(i32 client_id, i32 window_id) =|
|
||||
remove_window_stealing(i32 window_id) =|
|
||||
add_window_stealing_for_client(i32 client_id, i32 window_id) => ()
|
||||
remove_window_stealing_for_client(i32 client_id, i32 window_id) => ()
|
||||
remove_window_stealing(i32 window_id) => ()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue