From: Jonathan Neuschäfer Date: Wed, 12 Oct 2011 20:15:57 +0000 (+0200) Subject: remove unused typedef screen_functions_t X-Git-Tag: release-0.20~79 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=524d59daae8cc5e28306f84d93ff929de37d6eab;p=ncmpc.git remove unused typedef screen_functions_t <@cirrus> legacy, I think. --- 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