[][src]Function xcb::xproto::change_save_set_checked

pub fn change_save_set_checked<'a>(
    c: &'a Connection,
    mode: u8,
    window: Window
) -> VoidCookie<'a>

Changes a client's save set

TODO: explain what the save set is for.

This function either adds or removes the specified window to the client's (your application's) save set.

parameters:

  • c: The connection object to the server

  • mode: Insert to add the specified window to the save set or Delete to delete it from the save set.

  • window: The window to add or delete to/from your save set.