aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputPlugin.h
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-05-31 02:21:06 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-05-31 02:21:06 +0000
commit97fe75a0bf4ce5a0769a7509f758eda3f52fd6b3 (patch)
treeedf2f869cbd4e8b0bd728b6162ae4c2b61700f7a /src/inputPlugin.h
parent30424cb3e9cf500165621802f65d552218e080f3 (diff)
downloadmpd-97fe75a0bf4ce5a0769a7509f758eda3f52fd6b3.tar.gz
mpd-97fe75a0bf4ce5a0769a7509f758eda3f52fd6b3.tar.xz
mpd-97fe75a0bf4ce5a0769a7509f758eda3f52fd6b3.zip
little cleanup of plugin stuff
git-svn-id: https://svn.musicpd.org/mpd/trunk@1247 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--src/inputPlugin.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/inputPlugin.h b/src/inputPlugin.h
index 9e1ff395d..fe59b722a 100644
--- a/src/inputPlugin.h
+++ b/src/inputPlugin.h
@@ -15,7 +15,8 @@ typedef int (* InputPlugin_streamDecodeFunc) (OutputBuffer *, DecoderControl *,
typedef int (* InputPlugin_fileDecodeFunc) (OutputBuffer *, DecoderControl *);
-typedef MpdTag * (* InputPlugin_tagDupFunc) (char * utf8file);
+/* file should be the full path! */
+typedef MpdTag * (* InputPlugin_tagDupFunc) (char * file);
typedef struct _InputPlugin {
char * name;