From ea9dbfd7ae74e1d885eaacb044626b41f9abd118 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Lalinsk=C3=BD?= Date: Tue, 20 Oct 2009 16:45:10 +0000 Subject: [PATCH] Add missing exports for a few public ID3v1 functions Patch by Modestas Vainius git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@1038114 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- taglib/mpeg/id3v1/id3v1genres.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/taglib/mpeg/id3v1/id3v1genres.h b/taglib/mpeg/id3v1/id3v1genres.h index 6e5d82e7..cb79056b 100644 --- a/taglib/mpeg/id3v1/id3v1genres.h +++ b/taglib/mpeg/id3v1/id3v1genres.h @@ -45,21 +45,21 @@ namespace TagLib { * A "reverse mapping" that goes from the canonical ID3v1 genre name to the * respective genre number. genreMap()["Rock"] == */ - GenreMap genreMap(); + GenreMap TAGLIB_EXPORT genreMap(); /*! * Returns the name of the genre at \a index in the ID3v1 genre list. If * \a index is out of range -- less than zero or greater than 146 -- a null * string will be returned. */ - String genre(int index); + String TAGLIB_EXPORT genre(int index); /*! * Returns the genre index for the (case sensitive) genre \a name. If the * genre is not in the list 255 (which signifies an unknown genre in ID3v1) * will be returned. */ - int genreIndex(const String &name); + int TAGLIB_EXPORT genreIndex(const String &name); } }