Class: XCB::GrabPointerReply
- Inherits:
-
Object
- Object
- XCB::GrabPointerReply
- Defined in:
- ext/xproto.c
Instance Method Summary collapse
Instance Method Details
#status ⇒ Object
3384 3385 3386 3387 3388 3389 3390 |
# File 'ext/xproto.c', line 3384
static VALUE
r_XCB_GrabPointerReply_get_status(VALUE r_self)
{
xcb_grab_pointer_reply_t *reply;
Data_Get_Struct(r_self, xcb_grab_pointer_reply_t, reply);
return INT2FIX(reply->status);
}
|