Method: XCB::QueryPointerReply#root_x
- Defined in:
- ext/xproto.c
#root_x ⇒ Object
3419 3420 3421 3422 3423 3424 3425 |
# File 'ext/xproto.c', line 3419
static VALUE
r_XCB_QueryPointerReply_get_root_x(VALUE r_self)
{
xcb_query_pointer_reply_t *reply;
Data_Get_Struct(r_self, xcb_query_pointer_reply_t, reply);
return INT2FIX(reply->root_x);
}
|