summaryrefslogtreecommitdiff
path: root/src/libaudtag/audtag.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libaudtag/audtag.h')
-rw-r--r--src/libaudtag/audtag.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/libaudtag/audtag.h b/src/libaudtag/audtag.h
index e2467c3..70ec3b7 100644
--- a/src/libaudtag/audtag.h
+++ b/src/libaudtag/audtag.h
@@ -32,15 +32,11 @@ enum class TagType
ID3v2
};
-bool tuple_read (Tuple & tuple, VFSFile & file) __attribute__((deprecated));
-Index<char> image_read (VFSFile & file) __attribute__((deprecated));
+bool read_tag (VFSFile & file, Tuple & tuple, Index<char> * image);
/* new_type specifies the type of tag (see the TagType enum) that should be
* written if the file does not have any existing tag. */
-bool tuple_write (const Tuple & tuple, VFSFile & file, TagType new_type);
-
-/* since Audacious 3.7: reads tuple and image in one pass */
-bool read_tag (VFSFile & file, Tuple * tuple, Index<char> * image);
+bool write_tuple (VFSFile & file, const Tuple & tuple, TagType new_type);
}