Class: XCB::SetModifierMappingReply
- Inherits:
-
Object
- Object
- XCB::SetModifierMappingReply
- Defined in:
- ext/xproto.c
Instance Method Summary collapse
Instance Method Details
#status ⇒ Object
4434 4435 4436 4437 4438 4439 4440 |
# File 'ext/xproto.c', line 4434
static VALUE
r_XCB_SetModifierMappingReply_get_status(VALUE r_self)
{
xcb_set_modifier_mapping_reply_t *reply;
Data_Get_Struct(r_self, xcb_set_modifier_mapping_reply_t, reply);
return INT2FIX(reply->status);
}
|