From c461fe6377836b486ad6dc6a1558a63e7c32eaa1 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 29 Sep 2008 15:52:30 +0200 Subject: song: converted "type" to enum Having an enum type is much nicer than an anonymous integer plus CPP macros. Note that the old code didn't save any space by declaring the variable 8 bit, due to padding. --- src/song.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src/song.h') diff --git a/src/song.h b/src/song.h index 9bb96aba0..6de962493 100644 --- a/src/song.h +++ b/src/song.h @@ -29,21 +29,24 @@ #define SONG_BEGIN "songList begin" #define SONG_END "songList end" -#define SONG_TYPE_FILE 1 -#define SONG_TYPE_URL 2 +enum song_type { + SONG_TYPE_FILE = 1, + SONG_TYPE_URL = 2 +}; #define SONG_FILE "file: " #define SONG_TIME "Time: " typedef struct _Song { char *url; - int8_t type; struct mpd_tag *tag; + enum song_type type; struct _Directory *parentDir; time_t mtime; } Song; -Song *newSong(const char *url, int songType, struct _Directory *parentDir); +Song *newSong(const char *url, enum song_type type, + struct _Directory *parentDir); void freeSong(Song *); -- cgit v1.2.3