Code

Documentation update.
[ncmpc.git] / screen_utils.h
2 /* read a characher from the status window */
3 int screen_getch(WINDOW *w, char *prompt);
5 /* read a string from the status window */
6 char *screen_getstr(WINDOW *w, char *prompt);
8 /* query user for a string and find it in a list window */
9 int screen_find(screen_t *screen,
10                 mpd_client_t *c,
11                 list_window_t *lw, 
12                 int rows,
13                 command_t findcmd,
14                 list_window_callback_fn_t callback_fn);
17 int my_waddstr(WINDOW *, const char *, int);
18 int my_mvwaddstr(WINDOW *, int, int, const char *, int);