Method: XCB::GetPropertyReply#value_len
- Defined in:
- ext/xproto.c
#value_len ⇒ Object
3308 3309 3310 3311 3312 3313 3314 |
# File 'ext/xproto.c', line 3308
static VALUE
r_XCB_GetPropertyReply_get_value_len(VALUE r_self)
{
xcb_get_property_reply_t *reply;
Data_Get_Struct(r_self, xcb_get_property_reply_t, reply);
return INT2FIX(reply->value_len);
}
|