diff options
Diffstat (limited to 'src/data.h')
| -rw-r--r-- | src/data.h | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -10,19 +10,19 @@ struct tag { bool index_dirty; bool reordered; - struct link link; /* tags list */ - struct link link_sel; /* selected tags list */ + struct list_link link; /* tags list */ + struct list_link link_sel; /* selected tags list */ }; struct track { char *name, *fpath; struct tag *tag; - struct link link; /* tracks list */ - struct link link_pl; /* player playlist */ - struct link link_tt; /* tag tracks list */ - struct link link_pq; /* player queue */ - struct link link_hs; /* player history */ + struct list_link link; /* tracks list */ + struct list_link link_pl; /* player playlist */ + struct list_link link_tt; /* tag tracks list */ + struct list_link link_pq; /* player queue */ + struct list_link link_hs; /* player history */ }; bool path_exists(const char *path); @@ -34,7 +34,7 @@ bool copy_file(const char *dst, const char *src); bool dup_file(const char *dst, const char *src); bool move_file(const char *dst, const char *src); -struct track *tracks_vis_track(struct link *link); +struct track *tracks_vis_track(struct list_link *link); void playlist_clear(void); void playlist_update(void); |
