diff options
author | Max Kellermann <max@duempel.org> | 2008-09-25 21:21:29 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-25 21:21:29 +0200 |
commit | fb70ff1a3441d1076ba9eafe61d94b81190dda44 (patch) | |
tree | b0016efae9e322393e9e86964169c26210bf167d /src/screen_list.h | |
parent | 5c752834b88e5f956e535da674f5a712757f69e7 (diff) | |
download | mpd-fb70ff1a3441d1076ba9eafe61d94b81190dda44.tar.gz mpd-fb70ff1a3441d1076ba9eafe61d94b81190dda44.tar.xz mpd-fb70ff1a3441d1076ba9eafe61d94b81190dda44.zip |
screen: removed screen.mode
Everything is now managed with a pointer to the screen_functions
struct.
Diffstat (limited to 'src/screen_list.h')
-rw-r--r-- | src/screen_list.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/screen_list.h b/src/screen_list.h index 583c225b0..1293b74d9 100644 --- a/src/screen_list.h +++ b/src/screen_list.h @@ -50,7 +50,7 @@ void screen_list_resize(unsigned cols, unsigned rows); const char * -screen_get_name(unsigned i); +screen_get_name(const struct screen_functions *sf); const struct screen_functions * screen_lookup_name(const char *name); @@ -58,7 +58,4 @@ screen_lookup_name(const char *name); int screen_get_id(const char *name); -int -lookup_mode(const struct screen_functions *sf); - #endif |