Class: XCB::GrabPointerReply

Inherits:
Object
  • Object
show all
Defined in:
ext/xproto.c

Instance Method Summary collapse

Instance Method Details

#statusObject



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);
}