Method: XCB::ColormapNotifyEvent#state
- Defined in:
- ext/xproto.c
#state ⇒ Object
1902 1903 1904 1905 1906 1907 1908 |
# File 'ext/xproto.c', line 1902
static VALUE
r_XCB_ColormapNotifyEvent_get_state(VALUE r_self)
{
xcb_colormap_notify_event_t *event;
Data_Get_Struct(r_self, xcb_colormap_notify_event_t, event);
return INT2FIX(event->state);
}
|