libmpd-playlist.h | libmpd-playlist.h | |||
---|---|---|---|---|
skipping to change at line 324 | skipping to change at line 324 | |||
/** | /** | |||
* @param mi a #MpdObj | * @param mi a #MpdObj | |||
* @param songpos the pos of the song to remove | * @param songpos the pos of the song to remove | |||
* | * | |||
* Removes the song from the queue at position songpos | * Removes the song from the queue at position songpos | |||
* | * | |||
* @returns a #MpdError | * @returns a #MpdError | |||
*/ | */ | |||
int mpd_playlist_mpd_queue_remove(MpdObj *mi, int songpos); | int mpd_playlist_mpd_queue_remove(MpdObj *mi, int songpos); | |||
/** | ||||
* @param mi a #MpdObj | ||||
* @param path The path to a playlist to load | ||||
* | ||||
* This queues a load command. The actual load isn't done until #mpd_playli | ||||
st_queue_commit is called | ||||
* | ||||
* @returns a #MpdError | ||||
*/ | ||||
int mpd_playlist_load (MpdObj *mi,const char *path); | ||||
/*@}*/ | /*@}*/ | |||
#endif | #endif | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 10 lines changed or added | |||
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.19.96" | #define LIBMPD_VERSION "0.19.98" | |||
#define LIBMPD_MAJOR_VERSION (0) | #define LIBMPD_MAJOR_VERSION (0) | |||
#define LIBMPD_MINOR_VERSION (19) | #define LIBMPD_MINOR_VERSION (19) | |||
#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 | |||
libmpd.h | libmpd.h | |||
---|---|---|---|---|
skipping to change at line 88 | skipping to change at line 88 | |||
/** Playlist is empty */ | /** Playlist is empty */ | |||
MPD_PLAYLIST_EMPTY = -70, | MPD_PLAYLIST_EMPTY = -70, | |||
/** Playlist queue is empty */ | /** Playlist queue is empty */ | |||
MPD_PLAYLIST_QUEUE_EMPTY = -75, | MPD_PLAYLIST_QUEUE_EMPTY = -75, | |||
/** Player isn't Playing */ | /** Player isn't Playing */ | |||
MPD_PLAYER_NOT_PLAYING = -80, | MPD_PLAYER_NOT_PLAYING = -80, | |||
/** Tag Item not found */ | /** Tag Item not found */ | |||
MPD_TAG_NOT_FOUND = -90, | MPD_TAG_NOT_FOUND = -90, | |||
/* MPD_PLALIST_LOAD_FAILED */ | ||||
MPD_PLAYLIST_LOAD_FAILED = -100, | ||||
/** Fatal error, something I am not sure what todo with */ | /** Fatal error, something I am not sure what todo with */ | |||
MPD_FATAL_ERROR = -1000 | MPD_FATAL_ERROR = -1000 | |||
}MpdError; | }MpdError; | |||
/** | /** | |||
* The Main Mpd Object. Don't access any of the internal values directly, but use the provided functions. | * The Main Mpd Object. Don't access any of the internal values directly, but use the provided functions. | |||
*/ | */ | |||
typedef struct _MpdObj MpdObj; | typedef struct _MpdObj MpdObj; | |||
/** | /** | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 3 lines changed or added | |||