summaryrefslogtreecommitdiff
path: root/include/mp3node.h
blob: c7e9140788318279e3f5f9c38fbed7dd586e798d (plain)
1
2
3
4
5
6
7
8
9
#ifndef _MP3NODE_H_
#define _MP3NODE_H_
struct ID3Tag;

struct mnode {
	ID3Tag *tag;
	void *data;
};
#endif