3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
|
# File 'ext/xproto.c', line 3251
static VALUE
r_XCB_QueryTreeReply_get_children(VALUE r_self)
{
xcb_query_tree_reply_t *reply;
Data_Get_Struct(r_self, xcb_query_tree_reply_t, reply);
int __children_len = xcb_query_tree_children_length(reply);
uint32_t *__children = xcb_query_tree_children(reply);
VALUE r_children = rb_ary_new2(__children_len);
int i;
for (i = 0; i < __children_len; i += 1)
rb_ary_store(r_children, i, INT2FIX(__children[i]));
return r_children;
}
|