annotate Plugins/General/scrobbler/tags/include/unicode.h @ 688:cc1969408403 trunk

[svn] - add scrobbler support
author nenolod
date Sat, 25 Feb 2006 12:11:20 -0800
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
688
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
1 /*
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
2 * libmetatag - A media file tag-reader library
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
3 * Copyright (C) 2003, 2004 Pipian
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
4 *
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
5 * This library is free software; you can redistribute it and/or
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
6 * modify it under the terms of the GNU Lesser General Public
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
7 * License as published by the Free Software Foundation; either
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
8 * version 2.1 of the License, or (at your option) any later version.
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
9 *
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
10 * This library is distributed in the hope that it will be useful,
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
13 * Lesser General Public License for more details.
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
14 *
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
15 * You should have received a copy of the GNU Lesser General Public
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
16 * License along with this library; if not, write to the Free Software
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
18 *
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
19 */
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
20
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
21 #ifndef UNICODE_H
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
22 #define UNICODE_H 1
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
23 wchar_t *utf8_to_wchar(unsigned char *, size_t);
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
24 unsigned char *wchar_to_utf8(wchar_t *, size_t);
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
25 void iso88591_to_utf8(unsigned char *, size_t, unsigned char **);
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
26 void utf16bom_to_utf8(unsigned char *, size_t, unsigned char **);
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
27 void utf16be_to_utf8(unsigned char *, size_t, unsigned char **);
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
28 void utf16le_to_utf8(unsigned char *, size_t, unsigned char **);
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
29 #endif