diff options
author | Mikael Svantesson <mikael@distopic.net> | 2008-12-05 18:35:56 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-05 18:35:56 +0100 |
commit | 3cff7b547795bdeeea44dc54bc851e70bfc7b40f (patch) | |
tree | 6e8ef272c5b51ccce4eebb79d7a27d814467ce52 /src/screen_list.h | |
parent | 785cb31333a8f0aaedf33af9cba38f012d514453 (diff) | |
download | mpd-3cff7b547795bdeeea44dc54bc851e70bfc7b40f.tar.gz mpd-3cff7b547795bdeeea44dc54bc851e70bfc7b40f.tar.xz mpd-3cff7b547795bdeeea44dc54bc851e70bfc7b40f.zip |
screen_outputs: new screen to control MPD's output devices
The "outputs" screen allows the user to enable or disable MPD's audio
output devices.
Diffstat (limited to 'src/screen_list.h')
-rw-r--r-- | src/screen_list.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/screen_list.h b/src/screen_list.h index e208a8bfe..63364c6c6 100644 --- a/src/screen_list.h +++ b/src/screen_list.h @@ -43,6 +43,10 @@ extern const struct screen_functions screen_keydef; #ifdef ENABLE_LYRICS_SCREEN extern const struct screen_functions screen_lyrics; #endif +#ifdef ENABLE_OUTPUTS_SCREEN +extern const struct screen_functions screen_outputs; +#endif + void screen_list_init(WINDOW *w, unsigned cols, unsigned rows); |