Class: XCB::SetPointerMappingReply
- Inherits:
-
Object
- Object
- XCB::SetPointerMappingReply
- Defined in:
- ext/xproto.c
Instance Method Summary collapse
Instance Method Details
#status ⇒ Object
4407 4408 4409 4410 4411 4412 4413 |
# File 'ext/xproto.c', line 4407
static VALUE
r_XCB_SetPointerMappingReply_get_status(VALUE r_self)
{
xcb_set_pointer_mapping_reply_t *reply;
Data_Get_Struct(r_self, xcb_set_pointer_mapping_reply_t, reply);
return INT2FIX(reply->status);
}
|