From 524d59daae8cc5e28306f84d93ff929de37d6eab Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jonathan=20Neusch=C3=A4fer?= Date: Wed, 12 Oct 2011 22:15:57 +0200 Subject: [PATCH] remove unused typedef screen_functions_t <@cirrus> legacy, I think. --- src/screen_interface.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/screen_interface.h b/src/screen_interface.h index a91c4d6..a853185 100644 --- a/src/screen_interface.h +++ b/src/screen_interface.h @@ -34,7 +34,7 @@ struct mpdclient; -typedef struct screen_functions { +struct screen_functions { void (*init)(WINDOW *w, int cols, int rows); void (*exit)(void); void (*open)(struct mpdclient *c); @@ -44,6 +44,6 @@ typedef struct screen_functions { void (*update)(struct mpdclient *c); bool (*cmd)(struct mpdclient *c, command_t cmd); const char *(*get_title)(char *s, size_t size); -} screen_functions_t; +}; #endif -- 2.30.2