aboutsummaryrefslogtreecommitdiff
path: root/src/tag_id3.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-02-12 18:25:46 +0100
committerMax Kellermann <max@duempel.org>2012-02-12 18:29:05 +0100
commit4a23a4bfee5c7b213da4f72ae858ab69840ccbdc (patch)
tree70d084568f2539f259c97d7c1cfe6e796a0a691b /src/tag_id3.h
parentac3ad452c03292e4c57b0d0e21c2dd407eb03a27 (diff)
tag_{ape,id3}: remove the _load() functions
Use _scan() instead, to have more control.
Diffstat (limited to 'src/tag_id3.h')
-rw-r--r--src/tag_id3.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/tag_id3.h b/src/tag_id3.h
index fb5c7c65..b99b4480 100644
--- a/src/tag_id3.h
+++ b/src/tag_id3.h
@@ -36,8 +36,6 @@ tag_id3_scan(const char *path_fs,
struct id3_tag;
struct tag *tag_id3_import(struct id3_tag *);
-struct tag *tag_id3_load(const char *file);
-
#else
#include <glib.h>
@@ -50,12 +48,6 @@ tag_id3_scan(G_GNUC_UNUSED const char *path_fs,
return false;
}
-static inline struct tag *
-tag_id3_load(G_GNUC_UNUSED const char *file)
-{
- return NULL;
-}
-
#endif
#endif