Method: XCB::GetKeyboardControlReply#bell_duration
- Defined in:
- ext/xproto.c
#bell_duration ⇒ Object
4306 4307 4308 4309 4310 4311 4312 |
# File 'ext/xproto.c', line 4306
static VALUE
r_XCB_GetKeyboardControlReply_get_bell_duration(VALUE r_self)
{
xcb_get_keyboard_control_reply_t *reply;
Data_Get_Struct(r_self, xcb_get_keyboard_control_reply_t, reply);
return INT2FIX(reply->bell_duration);
}
|