Method: XCB::Connection#ungrab_server
- Defined in:
- ext/xproto.c
#ungrab_server ⇒ Object
5131 5132 5133 5134 5135 5136 5137 5138 |
# File 'ext/xproto.c', line 5131
static VALUE
r_XCB_Connection_ungrab_server(VALUE r_self)
{
xcb_connection_t *connection;
Data_Get_Struct(r_self, xcb_connection_t, connection);
xcb_ungrab_server(connection);
return Qnil;
}
|