[][src]Function xcb::ffi::xproto::xcb_get_property_unchecked

pub unsafe extern "C" fn xcb_get_property_unchecked(
    c: *mut xcb_connection_t,
    delete: u8,
    window: xcb_window_t,
    property: xcb_atom_t,
    type_: xcb_atom_t,
    long_offset: u32,
    long_length: u32
) -> xcb_get_property_cookie_t

Gets a window property

Gets the specified property from the specified window. Properties are for example the window title (WM_NAME) or its minimum size (WM_NORMAL_HINTS). Protocols such as EWMH also use properties - for example EWMH defines the window title, encoded as UTF-8 string, in the _NET_WM_NAME property.

TODO: talk about type

TODO: talk about delete

TODO: talk about the offset/length thing. what's a valid use case?