From 03f02badf02adba317f6358bc0e1ebf669b48204 Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Thu, 11 Nov 2004 00:41:28 +0000 Subject: this is broken git-svn-id: https://svn.musicpd.org/mpd/trunk@2597 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/song.h | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'src/song.h') diff --git a/src/song.h b/src/song.h index 3a14afb05..45f9e7923 100644 --- a/src/song.h +++ b/src/song.h @@ -21,24 +21,23 @@ #include "../config.h" -#define SONG_BEGIN "songList begin" -#define SONG_END "songList end" - #include #include #include "tag.h" #include "list.h" -typedef enum { - SONG_TYPE_FILE = 1, - SONG_TYPE_URL = 2 -} SONG_TYPE; +#define SONG_BEGIN "songList begin" +#define SONG_END "songList end" + +#define SONG_TYPE_FILE 1 +#define SONG_TYPE_URL 2 typedef struct _Song { - char * utf8url; - SONG_TYPE type; + char * url; + mpd_sint8 type; MpdTag * tag; + struct _Directory * parentDir; time_t mtime; } Song; @@ -46,7 +45,7 @@ typedef List SongList; Song * newNullSong(); -Song * newSong(char * utf8url, SONG_TYPE type); +Song * newSong(char * utf8url, int songType, struct _Directory * parentDir); void freeSong(Song *); @@ -57,7 +56,7 @@ SongList * newSongList(); void freeSongList(SongList * list); Song * addSongToList(SongList * list, char * key, char * utf8file, - SONG_TYPE type); + int songType, struct _Directory * parentDir); int printSongInfo(FILE * fp, Song * song); @@ -71,4 +70,6 @@ int updateSongInfo(Song * song); Song * songDup(Song * song); +void printSongUrl(FILE * fp, Song * song); + #endif -- cgit v1.2.3