diff options
Diffstat (limited to 'screen_utils.h')
-rw-r--r-- | screen_utils.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/screen_utils.h b/screen_utils.h index a03c36d47..87cb6e04c 100644 --- a/screen_utils.h +++ b/screen_utils.h @@ -1,5 +1,15 @@ +/* read a string from the status window */ char *screen_readln(WINDOW *w, char *prompt); +/* query user for a string and find it in a list window */ +int screen_find(screen_t *screen, + mpd_client_t *c, + list_window_t *lw, + int rows, + command_t findcmd, + list_window_callback_fn_t callback_fn); + + int my_waddstr(WINDOW *, const char *, int); int my_mvwaddstr(WINDOW *, int, int, const char *, int); |