#ifndef _MP3NODE_H_ #define _MP3NODE_H_ #include 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