Method: XCB::Connection#destroy_window
- Defined in:
- ext/xproto.c
#destroy_window(r_window) ⇒ Object
4703 4704 4705 4706 4707 4708 4709 4710 4711 |
# File 'ext/xproto.c', line 4703 static VALUE r_XCB_Connection_destroy_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_destroy_window(connection, __window); return Qnil; } |