Class: XCB::GetSelectionOwnerReply

Inherits:
Object
  • Object
show all
Defined in:
ext/xproto.c

Instance Method Summary collapse

Instance Method Details

#ownerObject



3377
3378
3379
3380
3381
3382
3383
# File 'ext/xproto.c', line 3377

static VALUE
r_XCB_GetSelectionOwnerReply_get_owner(VALUE r_self)
{
	xcb_get_selection_owner_reply_t *reply;
	Data_Get_Struct(r_self, xcb_get_selection_owner_reply_t, reply);
	return INT2FIX(reply->owner);
}