Class: XCB::GetSelectionOwnerReply
- Inherits:
-
Object
- Object
- XCB::GetSelectionOwnerReply
- Defined in:
- ext/xproto.c
Instance Method Summary collapse
Instance Method Details
#owner ⇒ Object
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);
}
|