aboutsummaryrefslogtreecommitdiff
path: root/src/song.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-09-26 09:54:25 +0200
committerMax Kellermann <max@duempel.org>2008-09-26 09:54:25 +0200
commit323e86489fb9544b3a2faa9e9004ac0b72bf01ca (patch)
tree37bcd31c5c977d1e59959ea86b47a15eae6e6a34 /src/song.h
parente2a12deead431f86c24d71579c954e00e73ed447 (diff)
song: removed type SongList
SongList has been superseded by struct songvec.
Diffstat (limited to 'src/song.h')
-rw-r--r--src/song.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/song.h b/src/song.h
index 59d372c2..3e7f8666 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);
/*