Removed unused input window function

This commit is contained in:
James Booth
2012-02-26 22:02:22 +00:00
parent 4dc46fb73b
commit 0a45044f1b
2 changed files with 0 additions and 7 deletions

View File

@@ -37,12 +37,6 @@ void create_input_window(void)
wrefresh(inp_win);
}
void inp_get_command_str(char *cmd)
{
wmove(inp_win, 0, 1);
wgetstr(inp_win, cmd);
}
void inp_clear(void)
{
wclear(inp_win);

View File

@@ -78,7 +78,6 @@ void status_bar_active(int win);
void status_bar_update_time(void);
// input window actions
void inp_get_command_str(char *cmd);
void inp_poll_char(int *ch, char command[], int *size);
void inp_clear(void);
void inp_put_back(void);