diff options
Diffstat (limited to 'screen.h')
-rw-r--r-- | screen.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -53,6 +53,8 @@ typedef struct char *buf; size_t buf_size; + char *findbuf; + int painted; } screen_t; @@ -63,6 +65,7 @@ int screen_init(void); int screen_exit(void); void screen_resized(int sig); void screen_status_message(mpd_client_t *c, char *msg); +void screen_status_printf(mpd_client_t *c, char *format, ...); char *screen_error(void); void screen_paint(mpd_client_t *c); void screen_update(mpd_client_t *c); |