Method: Libconio#settitle
- Defined in:
- ext/libconio.c
#settitle(title) ⇒ nil
Change the console window title.
819 820 821 822 823 824 825 826 827 828 829 |
# File 'ext/libconio.c', line 819
VALUE method_settitle(VALUE self, VALUE string_title)
{
// Ruby conversion string
const char * title = StringValuePtr(string_title);
// Native function settitle()
con_settitle(title);
// Return NULL value
return Qnil;
}
|