Method: XCB::Connection#convert_selection

Defined in:
ext/xproto.c

#convert_selection(r_requestor, r_selection, r_target, r_property, r_time) ⇒ Object



4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
# File 'ext/xproto.c', line 4966

static VALUE
r_XCB_Connection_convert_selection(VALUE r_self, VALUE r_requestor, VALUE r_selection, VALUE r_target, VALUE r_property, VALUE r_time)
{
  xcb_connection_t *connection;
  Data_Get_Struct(r_self, xcb_connection_t, connection);
  uint32_t __requestor = FIX2INT(r_requestor);
  uint32_t __selection = FIX2INT(r_selection);
  uint32_t __target = FIX2INT(r_target);
  uint32_t __property = FIX2INT(r_property);
  uint32_t __time = FIX2INT(r_time);
  xcb_convert_selection(connection, __requestor, __selection, __target, __property, __time);
  return Qnil;
}