summaryrefslogtreecommitdiff
path: root/include/mnode.h
blob: ff27eb7be05287a1b9a9da3768919b8bf86e93b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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