Method: Newt::Screen.bell
- Defined in:
- ext/ruby_newt/ruby_newt.c
.bell ⇒ Object
467 468 469 470 471 472 |
# File 'ext/ruby_newt/ruby_newt.c', line 467
static VALUE rb_ext_Screen_Bell(VALUE self)
{
INIT_GUARD();
newtBell();
return Qnil;
}
|