Method: XCB::NoExposureEvent#minor_opcode
- Defined in:
- ext/xproto.c
#minor_opcode ⇒ Object
1356 1357 1358 1359 1360 1361 1362 |
# File 'ext/xproto.c', line 1356
static VALUE
r_XCB_NoExposureEvent_get_minor_opcode(VALUE r_self)
{
xcb_no_exposure_event_t *event;
Data_Get_Struct(r_self, xcb_no_exposure_event_t, event);
return INT2FIX(event->minor_opcode);
}
|