Code

remove unused typedef screen_functions_t
authorJonathan Neuschäfer <j.neuschaefer@gmx.net>
Wed, 12 Oct 2011 20:15:57 +0000 (22:15 +0200)
committerJonathan Neuschäfer <j.neuschaefer@gmx.net>
Wed, 12 Oct 2011 20:58:34 +0000 (22:58 +0200)
<@cirrus> legacy, I think.

src/screen_interface.h

index a91c4d6cbc0890a9ff44857abe7041873afccb84..a853185c0fab11fd6ed3564388bfe4d6859a2e70 100644 (file)
@@ -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