diff options
| author | Louis Burda <quent.burda@gmail.com> | 2023-11-12 19:45:08 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2023-11-12 20:46:57 +0100 |
| commit | 049d23ab28f2708506dbde362539e9b5f36a10c4 (patch) | |
| tree | a9a64494a0c8662ac2431d9d70ac18b5c89329a5 /src/data.h | |
| parent | f868887d311cbb330732587c89ab9d886dfa4693 (diff) | |
| download | tmus-049d23ab28f2708506dbde362539e9b5f36a10c4.tar.gz tmus-049d23ab28f2708506dbde362539e9b5f36a10c4.zip | |
Update liblist api and remote
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); |
