Method: XCB::Connection#set_close_down_mode
- Defined in:
- ext/xproto.c
#set_close_down_mode(r_mode) ⇒ Object
6288 6289 6290 6291 6292 6293 6294 6295 6296 |
# File 'ext/xproto.c', line 6288
static VALUE
r_XCB_Connection_set_close_down_mode(VALUE r_self, VALUE r_mode)
{
xcb_connection_t *connection;
Data_Get_Struct(r_self, xcb_connection_t, connection);
uint8_t __mode = FIX2INT(r_mode);
xcb_set_close_down_mode(connection, __mode);
return Qnil;
}
|