summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorlulf@carrot.studby.ntnu.no <lulf@carrot.studby.ntnu.no>2008-04-25 15:16:39 +0200
committerlulf@carrot.studby.ntnu.no <lulf@carrot.studby.ntnu.no>2008-04-25 15:16:39 +0200
commit3a5ef70e5d22148a221d89b24df09d2c60f8d0f5 (patch)
treeb0fda2b74d08aa06e89f19c16051f0ae0195f15f /include
parent8a8bd7565b5ae8f1447099d672d7097adba64864 (diff)
- Use taglib in mnode.
Diffstat (limited to 'include')
-rw-r--r--include/mnode.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/mnode.h b/include/mnode.h
index 3508395..d84c0ad 100644
--- a/include/mnode.h
+++ b/include/mnode.h
@@ -1,11 +1,10 @@
#ifndef _MP3NODE_H_
#define _MP3NODE_H_
-struct ID3Tag;
+struct TagLib_File;
struct mnode {
char *path;
- ID3Tag *tag;
-
+ TagLib_File *tag;
/* Entry in search structure. */
LIST_ENTRY(mnode) next;
};