Method: XCB::LeaveNotifyEvent#child
- Defined in:
- ext/xproto.c
#child ⇒ Object
2170 2171 2172 2173 2174 2175 2176 |
# File 'ext/xproto.c', line 2170
static VALUE
r_XCB_LeaveNotifyEvent_get_child(VALUE r_self)
{
xcb_leave_notify_event_t *event;
Data_Get_Struct(r_self, xcb_leave_notify_event_t, event);
return INT2FIX(event->child);
}
|