diff options
author | Kalle Wallin <kaw@linux.se> | 2004-06-15 13:10:54 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-06-15 13:10:54 +0000 |
commit | a8baf3be0cbdb33d48df4e704ca2f1cb0b77f93b (patch) | |
tree | 4453a83e1015fd6ff431f7ec6903e8ff7517415c /src/options.h | |
parent | 4800010b0422f05c31db877011a0f62d992740e2 (diff) | |
download | mpd-a8baf3be0cbdb33d48df4e704ca2f1cb0b77f93b.tar.gz mpd-a8baf3be0cbdb33d48df4e704ca2f1cb0b77f93b.tar.xz mpd-a8baf3be0cbdb33d48df4e704ca2f1cb0b77f93b.zip |
Added list-format and status-format conf options
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1496 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/options.h')
-rw-r--r-- | src/options.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/options.h b/src/options.h index 2a6681e2a..4ca1a4561 100644 --- a/src/options.h +++ b/src/options.h @@ -9,6 +9,8 @@ typedef struct char *password; char *config_file; char *key_file; + char *list_format; + char *status_format; int port; int reconnect; int debug; @@ -16,6 +18,7 @@ typedef struct int auto_center; int wide_cursor; int enable_colors; + int enable_beep; } options_t; |