summaryrefslogtreecommitdiff
path: root/include/mnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mnode.h')
-rw-r--r--include/mnode.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/mnode.h b/include/mnode.h
deleted file mode 100644
index ff27eb7..0000000
--- a/include/mnode.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef _MP3NODE_H_
-#define _MP3NODE_H_
-#include <queue.h>
-struct TagLib_File;
-
-struct mnode {
- char *path;
- TagLib_File *tag;
- /* Entry in search structure. */
- LIST_ENTRY(mnode) coll_next;
- LIST_ENTRY(mnode) sel_next;
-};
-
-struct collection {
- LIST_HEAD(, mnode) head;
-};
-#endif