summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mp3node.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/mp3node.h b/include/mp3node.h
new file mode 100644
index 0000000..c7e9140
--- /dev/null
+++ b/include/mp3node.h
@@ -0,0 +1,9 @@
+#ifndef _MP3NODE_H_
+#define _MP3NODE_H_
+struct ID3Tag;
+
+struct mnode {
+ ID3Tag *tag;
+ void *data;
+};
+#endif