charset.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:2k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* libxmms-flac - XMMS FLAC input plugin
  2.  * Copyright (C) 2002,2003,2004,2005  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. #ifndef __CHARSET_H__
  23. #define __CHARSET_H__
  24. /***************
  25.  * Declaration *
  26.  ***************/
  27. typedef struct {
  28. gchar *charset_title;
  29. gchar *charset_name;
  30. } CharsetInfo;
  31. /* translated charset titles */
  32. extern const CharsetInfo charset_trans_array[];
  33. /**************
  34.  * Prototypes *
  35.  **************/
  36. /*
  37.  * The returned strings are malloc()ed an must be free()d by the caller
  38.  */
  39. char *convert_from_utf8_to_user(const char *string);
  40. char *convert_from_user_to_utf8(const char *string);
  41. GList *Charset_Create_List (void);
  42. GList *Charset_Create_List_UTF8_Only (void);
  43. gchar *Charset_Get_Name_From_Title (gchar *charset_title);
  44. gchar *Charset_Get_Title_From_Name (gchar *charset_name);
  45. #endif /* __CHARSET_H__ */