Method: Newt::Screen.draw_roottext
- Defined in:
- ext/ruby_newt/ruby_newt.c
.draw_roottext(col, row, text) ⇒ Object
438 439 440 441 442 443 |
# File 'ext/ruby_newt/ruby_newt.c', line 438
static VALUE rb_ext_Screen_DrawRootText(VALUE self, VALUE col, VALUE row, VALUE text)
{
INIT_GUARD();
newtDrawRootText(NUM2INT(col), NUM2INT(row), StringValuePtr(text));
return Qnil;
}
|