summaryrefslogtreecommitdiff
path: root/include/mnode.h
diff options
context:
space:
mode:
authorUlf Lilleengen <lulf@carrot.studby.ntnu.no>2008-08-03 18:10:38 +0200
committerUlf Lilleengen <lulf@carrot.studby.ntnu.no>2008-08-03 18:10:38 +0200
commitbd55a14447d53fef7e50797ed830b2d12f8ad334 (patch)
tree32d61303b78c69fc7b2b6ca03e307674eefa9026 /include/mnode.h
parentacbf5536ee7b226c9126428bfe67ae5a34509e6f (diff)
- Initial implementation of sqlite3 as backend for music.
- Add current database schema. - Remove old query support, since this is replaced by sqlite now.
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