libmpd-version.h | libmpd-version.h | |||
---|---|---|---|---|
skipping to change at line 21 | skipping to change at line 21 | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
* GNU General Public License for more details. | * GNU General Public License for more details. | |||
* You should have received a copy of the GNU General Public License along | * 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., | * with this program; if not, write to the Free Software Foundation, Inc., | |||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |||
*/ | */ | |||
#ifndef LIBMPD_VERSION | #ifndef LIBMPD_VERSION | |||
#define LIBMPD_VERSION "0.20.0" | #define LIBMPD_VERSION "11.8.17" | |||
#define LIBMPD_MAJOR_VERSION (0) | #define LIBMPD_MAJOR_VERSION (11) | |||
#define LIBMPD_MINOR_VERSION (20) | #define LIBMPD_MINOR_VERSION (8) | |||
#define LIBMPD_MICRO_VERSION (0) | #define LIBMPD_MICRO_VERSION (17) | |||
#endif | #endif | |||
End of changes. 2 change blocks. | ||||
4 lines changed or deleted | 4 lines changed or added | |||
libmpd.h | libmpd.h | |||
---|---|---|---|---|
skipping to change at line 606 | skipping to change at line 606 | |||
* | * | |||
* Returns if mpd supports this tag. | * Returns if mpd supports this tag. | |||
* | * | |||
* return 1 if support 0 if not | * return 1 if support 0 if not | |||
*/ | */ | |||
int mpd_server_tag_supported(MpdObj *mi, int tag); | int mpd_server_tag_supported(MpdObj *mi, int tag); | |||
typedef enum { | typedef enum { | |||
MPD_SERVER_REPLAYGAIN_MODE_OFF = 0, | MPD_SERVER_REPLAYGAIN_MODE_OFF = 0, | |||
MPD_SERVER_REPLAYGAIN_MODE_TRACK = 1, | MPD_SERVER_REPLAYGAIN_MODE_TRACK = 1, | |||
MPD_SERVER_REPLAYGAIN_MODE_ALBUM = 2 | MPD_SERVER_REPLAYGAIN_MODE_ALBUM = 2, | |||
MPD_SERVER_REPLAYGAIN_MODE_AUTO = 3 | ||||
}MpdServerReplaygainMode; | }MpdServerReplaygainMode; | |||
MpdServerReplaygainMode mpd_server_get_replaygain_mode(MpdObj *mi); | MpdServerReplaygainMode mpd_server_get_replaygain_mode(MpdObj *mi); | |||
int mpd_server_set_replaygain_mode(MpdObj *mi, MpdServerReplaygainMode mode ); | int mpd_server_set_replaygain_mode(MpdObj *mi, MpdServerReplaygainMode mode ); | |||
#endif | #endif | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
} | } | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 2 lines changed or added | |||