Method: XCB::AllocColorReply#green
- Defined in:
- ext/xproto.c
#green ⇒ Object
3966 3967 3968 3969 3970 3971 3972 |
# File 'ext/xproto.c', line 3966
static VALUE
r_XCB_AllocColorReply_get_green(VALUE r_self)
{
xcb_alloc_color_reply_t *reply;
Data_Get_Struct(r_self, xcb_alloc_color_reply_t, reply);
return INT2FIX(reply->green);
}
|