404
405
406
407
408
409
410
411
412
|
# File 'ext/xproto.c', line 404
static VALUE
r_XCB_SetupRequest_get_authorization_protocol_name(VALUE r_self)
{
xcb_setup_request_t *setup_request;
Data_Get_Struct(r_self, xcb_setup_request_t, setup_request);
int __authorization_protocol_name_len = xcb_setup_request_authorization_protocol_name_length(setup_request);
char *__authorization_protocol_name = xcb_setup_request_authorization_protocol_name(setup_request);
return rb_str_new(__authorization_protocol_name, __authorization_protocol_name_len);
}
|