1/* libxmms-flac - XMMS FLAC input plugin
2 * Copyright (C) 2002,2003,2004,2005,2006  Daisuke Shimamura
3 *
4 * Almost from charset.h - 2001/12/04
5 *  EasyTAG - Tag editor for MP3 and OGG files
6 *  Copyright (C) 1999-2001  H���ard Kv���en <havardk@xmms.org>
7 *
8 *  This program is free software; you can redistribute it and/or modify
9 *  it under the terms of the GNU General Public License as published by
10 *  the Free Software Foundation; either version 2 of the License, or
11 *  (at your option) any later version.
12 *
13 *  This program is distributed in the hope that it will be useful,
14 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *  GNU General Public License for more details.
17 *
18 *  You should have received a copy of the GNU General Public License
19 *  along with this program; if not, write to the Free Software
20 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */
22
23
24#ifndef FLAC__PLUGIN_XMMS__CHARSET_H
25#define FLAC__PLUGIN_XMMS__CHARSET_H
26
27
28/***************
29 * Declaration *
30 ***************/
31
32typedef struct {
33	gchar *charset_title;
34	gchar *charset_name;
35} CharsetInfo;
36
37/* translated charset titles */
38extern const CharsetInfo charset_trans_array[];
39
40/**************
41 * Prototypes *
42 **************/
43
44/*
45 * The returned strings are malloc()ed an must be free()d by the caller
46 */
47char *convert_from_utf8_to_user(const char *string);
48char *convert_from_user_to_utf8(const char *string);
49
50GList *Charset_Create_List (void);
51GList *Charset_Create_List_UTF8_Only (void);
52gchar *Charset_Get_Name_From_Title (gchar *charset_title);
53gchar *Charset_Get_Title_From_Name (gchar *charset_name);
54
55#endif /* __CHARSET_H__ */
56
57