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.18.96" | #define LIBMPD_VERSION "0.18.98" | |||
#define LIBMPD_MAJOR_VERSION (0) | #define LIBMPD_MAJOR_VERSION (0) | |||
#define LIBMPD_MINOR_VERSION (18) | #define LIBMPD_MINOR_VERSION (18) | |||
#define LIBMPD_MICRO_VERSION (96) | #define LIBMPD_MICRO_VERSION (98) | |||
#endif | #endif | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||
libmpdclient.h | libmpdclient.h | |||
---|---|---|---|---|
skipping to change at line 300 | skipping to change at line 300 | |||
char *performer; | char *performer; | |||
/* Disc */ | /* Disc */ | |||
char *disc; | char *disc; | |||
/* Comment */ | /* Comment */ | |||
char *comment; | char *comment; | |||
/* AlbumArtist */ | /* AlbumArtist */ | |||
char *albumartist; | char *albumartist; | |||
/* length of song in seconds, check that it is not MPD_SONG_NO_TIME */ | /* length of song in seconds, check that it is not MPD_SONG_NO_TIME */ | |||
int time; | int time; | |||
/* The modification time */ | ||||
time_t mtime; | ||||
/* if plchanges/playlistinfo/playlistid used, is the position of the | /* if plchanges/playlistinfo/playlistid used, is the position of the | |||
* song in the playlist */ | * song in the playlist */ | |||
int pos; | int pos; | |||
/* song id for a song in the playlist */ | /* song id for a song in the playlist */ | |||
int id; | int id; | |||
} mpd_Song; | } mpd_Song; | |||
/* mpd_newSong | /* mpd_newSong | |||
* use to allocate memory for a new mpd_Song | * use to allocate memory for a new mpd_Song | |||
* file, artist, etc all initialized to NULL | * file, artist, etc all initialized to NULL | |||
End of changes. 1 change blocks. | ||||
2 lines changed or deleted | 0 lines changed or added | |||