Method: Newt::Screen.pop_window
- Defined in:
- ext/ruby_newt/ruby_newt.c
.pop_window ⇒ Object
254 255 256 257 258 259 |
# File 'ext/ruby_newt/ruby_newt.c', line 254
static VALUE rb_ext_Screen_PopWindow(VALUE self)
{
INIT_GUARD();
newtPopWindow();
return Qnil;
}
|