Method: XCB::Connection#unmap_window

Defined in:
ext/xproto.c

#unmap_window(r_window) ⇒ Object



4761
4762
4763
4764
4765
4766
4767
4768
4769
# File 'ext/xproto.c', line 4761

static VALUE
r_XCB_Connection_unmap_window(VALUE r_self, VALUE r_window)
{
	xcb_connection_t *connection;
	Data_Get_Struct(r_self, xcb_connection_t, connection);
	uint32_t __window = FIX2INT(r_window);
	xcb_unmap_window(connection, __window);
	return Qnil;
}