Method: XCB::QueryColorsReply#colors_len
- Defined in:
- ext/xproto.c
#colors_len ⇒ Object
4117 4118 4119 4120 4121 4122 4123 |
# File 'ext/xproto.c', line 4117
static VALUE
r_XCB_QueryColorsReply_get_colors_len(VALUE r_self)
{
xcb_query_colors_reply_t *reply;
Data_Get_Struct(r_self, xcb_query_colors_reply_t, reply);
return INT2FIX(reply->colors_len);
}
|