summaryrefslogtreecommitdiff
path: root/src/libaudtag/tag_module.h
diff options
context:
space:
mode:
authorMateusz Łukasik <mati75@linuxmint.pl>2016-02-05 21:36:07 +0100
committerMateusz Łukasik <mati75@linuxmint.pl>2016-02-05 21:36:07 +0100
commit7f08dcfc78675bed63f962f6d01cfb18264e12c7 (patch)
treedb54c9dc0279b43c1eedea09512ec60ecb3c94e9 /src/libaudtag/tag_module.h
parentb541fedc97ad4ed5e658ce34ee50c74ad756f330 (diff)
Imported Upstream version 3.7.1
Diffstat (limited to 'src/libaudtag/tag_module.h')
-rw-r--r--src/libaudtag/tag_module.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/libaudtag/tag_module.h b/src/libaudtag/tag_module.h
index 71360f7..b9de501 100644
--- a/src/libaudtag/tag_module.h
+++ b/src/libaudtag/tag_module.h
@@ -29,10 +29,9 @@ struct TagModule {
const char *m_name;
TagType m_type; /* set to None if the module cannot create new tags */
- virtual bool can_handle_file (VFSFile &fd);
- virtual bool read_tag (Tuple & tuple, VFSFile & handle);
- virtual Index<char> read_image (VFSFile & handle);
- virtual bool write_tag (const Tuple & tuple, VFSFile & handle);
+ virtual bool can_handle_file (VFSFile & file);
+ virtual bool read_tag (VFSFile & file, Tuple * tuple, Index<char> * image);
+ virtual bool write_tag (VFSFile & file, const Tuple & tuple);
protected:
TagModule(const char *name, TagType type) : m_name(name), m_type(type) { };