summaryrefslogtreecommitdiff
path: root/include/mnode.h
diff options
context:
space:
mode:
authorlulf@carrot.studby.ntnu.no <lulf@carrot.studby.ntnu.no>2008-04-21 17:03:44 +0200
committerlulf@carrot.studby.ntnu.no <lulf@carrot.studby.ntnu.no>2008-04-21 17:03:44 +0200
commit5628ef8cffa15591ab64f5258a7841e33e2250b5 (patch)
tree92c1ee2831245aa1f631651ac0aedd79cf652f4d /include/mnode.h
parent0ebfa9027441cc55b79a7615e328a9ff775af11f (diff)
- Implement basic check and indexing.
Diffstat (limited to 'include/mnode.h')
-rw-r--r--include/mnode.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/mnode.h b/include/mnode.h
new file mode 100644
index 0000000..c805e64
--- /dev/null
+++ b/include/mnode.h
@@ -0,0 +1,9 @@
+#ifndef _MP3NODE_H_
+#define _MP3NODE_H_
+struct ID3Tag;
+
+struct mnode {
+ ID3Tag *cached_tag;
+ char *path;
+};
+#endif