diff options
Diffstat (limited to 'track.h')
| -rw-r--r-- | track.h | 13 |
1 files changed, 2 insertions, 11 deletions
@@ -1,25 +1,16 @@ #pragma once -#include "link.h" +#include "list.h" #include "util.h" struct track { - char *name; - char *artist; - float duration; + wchar_t *name; struct link tags; char *fname, *fpath; struct link link; }; -struct track_ref { - struct track *track; - - struct link link; -}; - - struct track *track_init(const char *dir, const char *file); void track_free(struct track *t); |
