diff options
author | Max Kellermann <max@duempel.org> | 2008-09-26 09:54:25 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-26 09:54:25 +0200 |
commit | 323e86489fb9544b3a2faa9e9004ac0b72bf01ca (patch) | |
tree | 37bcd31c5c977d1e59959ea86b47a15eae6e6a34 /src/song.h | |
parent | e2a12deead431f86c24d71579c954e00e73ed447 (diff) | |
download | mpd-323e86489fb9544b3a2faa9e9004ac0b72bf01ca.tar.gz mpd-323e86489fb9544b3a2faa9e9004ac0b72bf01ca.tar.xz mpd-323e86489fb9544b3a2faa9e9004ac0b72bf01ca.zip |
song: removed type SongList
SongList has been superseded by struct songvec.
Diffstat (limited to 'src/song.h')
-rw-r--r-- | src/song.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/song.h b/src/song.h index 59d372c21..3e7f8666d 100644 --- a/src/song.h +++ b/src/song.h @@ -19,7 +19,6 @@ #ifndef SONG_H #define SONG_H -#include "list.h" #include "os_compat.h" #include "mpd_types.h" @@ -42,8 +41,6 @@ typedef struct _Song { time_t mtime; } Song; -typedef List SongList; - Song *newNullSong(void); Song *newSong(const char *url, int songType, struct _Directory *parentDir); @@ -52,13 +49,6 @@ void freeSong(Song *); void freeJustSong(Song *); -SongList *newSongList(void); - -void freeSongList(SongList * list); - -Song *addSongToList(SongList * list, const char *url, const char *utf8path, - int songType, struct _Directory *parentDir); - int updateSongInfo(Song * song); /* |