diff options
author | Max Kellermann <max@duempel.org> | 2008-10-03 14:31:00 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-03 14:31:00 +0200 |
commit | ef040e296e46fcc7620edaf89ffac05e065ec3e3 (patch) | |
tree | 8836cbeb47208a2f949d6f44a093f795f03f37cb /src/screen_browser.h | |
parent | 0b2eee9489a8acef3cdee6f6fa0df6d167c53b8d (diff) | |
download | mpd-ef040e296e46fcc7620edaf89ffac05e065ec3e3.tar.gz mpd-ef040e296e46fcc7620edaf89ffac05e065ec3e3.tar.xz mpd-ef040e296e46fcc7620edaf89ffac05e065ec3e3.zip |
screen: export the global variable "screen"
screen_t is a singleton. We do not have to pass it around
everywhere. Export the one global variable.
Diffstat (limited to '')
-rw-r--r-- | src/screen_browser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screen_browser.h b/src/screen_browser.h index 17e41f6ec..802886aa0 100644 --- a/src/screen_browser.h +++ b/src/screen_browser.h @@ -49,7 +49,7 @@ browser_change_directory(struct screen_browser *browser, mpdclient_t *c, filelist_entry_t *entry, const char *new_path); bool -browser_cmd(struct screen_browser *browser, struct screen *screen, +browser_cmd(struct screen_browser *browser, struct mpdclient *c, command_t cmd); #endif |