diff options
author | Max Kellermann <max@duempel.org> | 2013-10-02 12:22:12 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-02 12:22:12 +0200 |
commit | 17c6db6c33b9b14a8627b3f9b3da8580a5f932a2 (patch) | |
tree | 3a148be084070109465b40077ef80568aef5d172 /src/ReplayGainConfig.hxx | |
parent | 86316b182865caf7fd76bee1b6d50c66e11a3ce2 (diff) | |
download | mpd-17c6db6c33b9b14a8627b3f9b3da8580a5f932a2.tar.gz mpd-17c6db6c33b9b14a8627b3f9b3da8580a5f932a2.tar.xz mpd-17c6db6c33b9b14a8627b3f9b3da8580a5f932a2.zip |
replay_gain_*.h: rename to *.hxx
Diffstat (limited to '')
-rw-r--r-- | src/ReplayGainConfig.hxx (renamed from src/replay_gain_config.h) | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/src/replay_gain_config.h b/src/ReplayGainConfig.hxx index 4b59334c0..5b81d1cc1 100644 --- a/src/replay_gain_config.h +++ b/src/ReplayGainConfig.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2011 The Music Player Daemon Project + * Copyright (C) 2003-2013 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -17,23 +17,17 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef MPD_REPLAY_GAIN_CONFIG_H -#define MPD_REPLAY_GAIN_CONFIG_H +#ifndef MPD_REPLAY_GAIN_CONFIG_HXX +#define MPD_REPLAY_GAIN_CONFIG_HXX #include "check.h" -#include "replay_gain_info.h" - -#include <stdbool.h> +#include "ReplayGainInfo.hxx" extern enum replay_gain_mode replay_gain_mode; extern float replay_gain_preamp; extern float replay_gain_missing_preamp; extern bool replay_gain_limit; -#ifdef __cplusplus -extern "C" { -#endif - void replay_gain_global_init(void); /** @@ -56,8 +50,4 @@ replay_gain_set_mode_string(const char *p); enum replay_gain_mode replay_gain_get_real_mode(bool random_mode); -#ifdef __cplusplus -} -#endif - #endif |