summaryrefslogtreecommitdiff
path: root/junklib.h
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-09-28 22:56:57 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-09-28 22:56:57 +0200
commitb5bedb49dad2da3aab4a997ac6daad1c4f30d67a (patch)
tree82390feb2bc4925b707f11f65e08f7523e9dad90 /junklib.h
parent75d630d07d325ca8ac895dc23186819c00003926 (diff)
added VFS plugins
implemented stdio VFS plugin ported flac, mpgmad, ffap, vorbis, wavpack, junklib to VFS
Diffstat (limited to 'junklib.h')
-rw-r--r--junklib.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/junklib.h b/junklib.h
index 76399bd6..807c300d 100644
--- a/junklib.h
+++ b/junklib.h
@@ -18,21 +18,21 @@
#ifndef __JUNKLIB_H
#define __JUNKLIB_H
-#include <stdio.h>
+#include "deadbeef.h"
struct playItem_s;
int
-junk_read_id3v1 (struct playItem_s *it, FILE *fp);
+junk_read_id3v1 (struct playItem_s *it, DB_FILE *fp);
int
-junk_read_id3v2 (struct playItem_s *it, FILE *fp);
+junk_read_id3v2 (struct playItem_s *it, DB_FILE *fp);
int
-junk_read_ape (struct playItem_s *it, FILE *fp);
+junk_read_ape (struct playItem_s *it, DB_FILE *fp);
int
-junk_get_leading_size (FILE *fp);
+junk_get_leading_size (DB_FILE *fp);
const char *
junk_detect_charset (const char *s);