Use Unicode filenames on Windows.

git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@734944 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
Lukáš Lalinský
2007-11-10 15:16:49 +00:00
parent 5a495c5c11
commit b98be427f9
15 changed files with 208 additions and 1 deletions

View File

@ -100,6 +100,15 @@ MPC::File::File(const char *file, bool readProperties,
read(readProperties, propertiesStyle);
}
#ifdef TAGLIB_UNICODE_FILENAMES
MPC::File::File(const wchar_t *file, bool readProperties,
Properties::ReadStyle propertiesStyle) : TagLib::File(file)
{
d = new FilePrivate;
read(readProperties, propertiesStyle);
}
#endif
MPC::File::~File()
{
delete d;

View File

@ -88,6 +88,16 @@ namespace TagLib {
File(const char *file, bool readProperties = true,
Properties::ReadStyle propertiesStyle = Properties::Average);
#ifdef TAGLIB_UNICODE_FILENAMES
/*!
* Contructs an MPC file from \a file. If \a readProperties is true the
* file's audio properties will also be read using \a propertiesStyle. If
* false, \a propertiesStyle is ignored.
*/
File(const wchar_t *file, bool readProperties = true,
Properties::ReadStyle propertiesStyle = Properties::Average);
#endif
/*!
* Destroys this instance of the File.
*/