summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorlulf@carrot.studby.ntnu.no <lulf@carrot.studby.ntnu.no>2007-11-21 10:40:14 +0100
committerlulf@carrot.studby.ntnu.no <lulf@carrot.studby.ntnu.no>2007-11-21 10:40:14 +0100
commiteecaa0e7250a2c0cc9f019e6a5dc86582d284800 (patch)
treeb6b8e3519f73cd3f514c9c6624a81e845f51c56f /include
parent74d3d5ca1399fdf578778fd72e782079d2a6f5d7 (diff)
- Add node structure skeleton.
- Revert vnops changes.
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