aboutsummaryrefslogtreecommitdiffstats
path: root/screen.h
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2004-03-22 18:09:23 +0000
committerKalle Wallin <kaw@linux.se>2004-03-22 18:09:23 +0000
commit3da656b83260ef257675a4ae4c681b3b99f83353 (patch)
tree539f4b2839afc54cca47a5dd3090d53f0d95044f /screen.h
parent60edfc515dce2963f426450d3e66e51521645252 (diff)
downloadmpd-3da656b83260ef257675a4ae4c681b3b99f83353.tar.gz
mpd-3da656b83260ef257675a4ae4c681b3b99f83353.tar.xz
mpd-3da656b83260ef257675a4ae4c681b3b99f83353.zip
Added a find buffer and a function for formated status messages.
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@368 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'screen.h')
-rw-r--r--screen.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/screen.h b/screen.h
index 35124240b..4681319c3 100644
--- a/screen.h
+++ b/screen.h
@@ -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);