blob: bb33532d24a090dc1a70a7e66fc48c7b66e89989 [file] [log] [blame]
Josh Coalson412fa3b2002-07-11 06:15:30 +00001/* libxmms-flac - XMMS FLAC input plugin
Josh Coalsondea0f5a2009-01-07 07:31:28 +00002 * Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009 Daisuke Shimamura
Josh Coalson412fa3b2002-07-11 06:15:30 +00003 *
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 *
Miroslav Lichvar6a1f59b2012-12-04 17:36:05 +010018 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * with this program; if not, write to the Free Software Foundation, Inc.,
Josh Coalson412fa3b2002-07-11 06:15:30 +000021 */
22
23
Josh Coalson99ea6402005-09-02 04:51:19 +000024#ifndef FLAC__PLUGIN_XMMS__CHARSET_H
25#define FLAC__PLUGIN_XMMS__CHARSET_H
Josh Coalson412fa3b2002-07-11 06:15:30 +000026
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
Josh Coalson9745f252004-09-24 13:57:40 +000044/*
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);
Josh Coalson412fa3b2002-07-11 06:15:30 +000049
50GList *Charset_Create_List (void);
Josh Coalsoncd6bc7c2004-09-26 03:17:21 +000051GList *Charset_Create_List_UTF8_Only (void);
Josh Coalson412fa3b2002-07-11 06:15:30 +000052gchar *Charset_Get_Name_From_Title (gchar *charset_title);
53gchar *Charset_Get_Title_From_Name (gchar *charset_name);
54
Josh Coalson412fa3b2002-07-11 06:15:30 +000055#endif /* __CHARSET_H__ */
56