aboutsummaryrefslogtreecommitdiffstats
path: root/src/song.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/song.h')
-rw-r--r--src/song.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/song.h b/src/song.h
index c31c39829..0fbee7b07 100644
--- a/src/song.h
+++ b/src/song.h
@@ -43,21 +43,12 @@ typedef struct _Song {
time_t mtime;
} Song;
-typedef List SongList;
-
Song *newSong(const char *url, int songType, struct _Directory *parentDir);
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 printSongInfo(int fd, Song * song);
void readSongInfoIntoList(FILE * fp, struct _Directory *parent);