summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0ff374d)
raw | patch | inline | side by side (parent: 0ff374d)
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | |
Wed, 12 Oct 2011 20:15:57 +0000 (22:15 +0200) | ||
committer | Jonathan 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 | patch | blob | history |
diff --git a/src/screen_interface.h b/src/screen_interface.h
index a91c4d6cbc0890a9ff44857abe7041873afccb84..a853185c0fab11fd6ed3564388bfe4d6859a2e70 100644 (file)
--- a/src/screen_interface.h
+++ b/src/screen_interface.h
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);
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