Method: XCB::ConfigureRequestEvent#y
- Defined in:
- ext/xproto.c
#y ⇒ Object
1650 1651 1652 1653 1654 1655 1656 |
# File 'ext/xproto.c', line 1650
static VALUE
r_XCB_ConfigureRequestEvent_get_y(VALUE r_self)
{
xcb_configure_request_event_t *event;
Data_Get_Struct(r_self, xcb_configure_request_event_t, event);
return INT2FIX(event->y);
}
|