summaryrefslogtreecommitdiffstats
path: root/src/tag.h
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2021-12-29 01:46:08 +0100
committerLouis Burda <quent.burda@gmail.com>2021-12-29 01:46:08 +0100
commit7902429e5d69bb6aa57c6f1411b163d3e037e0e1 (patch)
tree4e09953714eacf615da8cacb65bdc34d26ed7262 /src/tag.h
parentfb0a1cabe8d61d3305d9d14acc4754a1b6151b8c (diff)
downloadtmus-7902429e5d69bb6aa57c6f1411b163d3e037e0e1.tar.gz
tmus-7902429e5d69bb6aa57c6f1411b163d3e037e0e1.zip
More refactoring, moved track manipulation into player
Planning on creating a modular player_backend component
Diffstat (limited to 'src/tag.h')
-rw-r--r--src/tag.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tag.h b/src/tag.h
index cf2c757..d7fd903 100644
--- a/src/tag.h
+++ b/src/tag.h
@@ -7,6 +7,10 @@ struct tag {
char *name;
char *fname, *fpath;
+ struct link tracks;
+
struct link link;
};
+struct tag *tag_init(const char *path, const char *fname);
+void tag_free(struct tag *tag);