Added msg command

This commit is contained in:
James Booth
2012-02-09 21:45:31 +00:00
parent d77c397b18
commit 4148f05307
5 changed files with 78 additions and 10 deletions

View File

@@ -15,3 +15,11 @@ void create_title_bar(void)
mvwprintw(title_bar, 0, 0, title);
wrefresh(title_bar);
}
void title_bar_show(char *title)
{
wclear(title_bar);
mvwprintw(title_bar, 0, 0, title);
wrefresh(title_bar);
}