diff options
author | Max Kellermann <max@musicpd.org> | 2016-11-24 16:40:47 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2016-11-24 17:34:57 +0100 |
commit | 4f229c254c5a99a95e080ec3e3c429990f29a41d (patch) | |
tree | eafcec6131a70f1f07110300f4428904ce6b2e0b /src/ReplayGainMode.hxx | |
parent | 25e58df5e07c3eb878d48ac58780d56f2ecdd565 (diff) |
ReplayGainInfo: move enum ReplayGainMode to separate header
Diffstat (limited to 'src/ReplayGainMode.hxx')
-rw-r--r-- | src/ReplayGainMode.hxx | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/ReplayGainMode.hxx b/src/ReplayGainMode.hxx new file mode 100644 index 000000000..8893aba14 --- /dev/null +++ b/src/ReplayGainMode.hxx @@ -0,0 +1,30 @@ +/* + * Copyright 2003-2016 The Music Player Daemon Project + * http://www.musicpd.org + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef MPD_REPLAY_GAIN_MODE_HXX +#define MPD_REPLAY_GAIN_MODE_HXX + +enum ReplayGainMode { + REPLAY_GAIN_AUTO = -2, + REPLAY_GAIN_OFF, + REPLAY_GAIN_ALBUM, + REPLAY_GAIN_TRACK, +}; + +#endif |