Method: XCB::MotionNotifyEvent#event_y
- Defined in:
- ext/xproto.c
#event_y ⇒ Object
1112 1113 1114 1115 1116 1117 1118 |
# File 'ext/xproto.c', line 1112
static VALUE
r_XCB_MotionNotifyEvent_get_event_y(VALUE r_self)
{
xcb_motion_notify_event_t *event;
Data_Get_Struct(r_self, xcb_motion_notify_event_t, event);
return INT2FIX(event->event_y);
}
|