diff options
author | 1 <NotZed@Ximian.com> | 2001-10-12 06:07:28 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-10-12 06:07:28 +0800 |
commit | 736e73548cb39a7aaad61f01704ac60ccb74f79e (patch) | |
tree | 1795238b59dfba4370d1972d17092a1c8daccf59 /e-util/e-iconv.h | |
parent | d965c00a22feafbb505a78d1414baa5e2ea39bb8 (diff) | |
download | gsoc2013-evolution-736e73548cb39a7aaad61f01704ac60ccb74f79e.tar.gz gsoc2013-evolution-736e73548cb39a7aaad61f01704ac60ccb74f79e.tar.zst gsoc2013-evolution-736e73548cb39a7aaad61f01704ac60ccb74f79e.zip |
bumped revision to .1
2001-10-11 <NotZed@Ximian.com>
* configure.in: bumped revision to .1
* gal/widgets/test-font-loading.c (print_gdk_font_name): Close
iconv when done.
* gal/widgets/e-unicode.c (e_utf8_to_gtk_string_sized): Close
iconv when dont with it.
(e_utf8_from_charset_string_sized): Changed for e_iconv api
changes.
(e_utf8_to_charset_string_sized): "
(e_utf8_from_gtk_string_sized): Close iconv when done with it.
(e_utf8_from_locale_string_sized): "
(e_utf8_to_locale_string_sized): "
* gal/widgets/e-font.c (e_locale_encoding): Removed.
(e_iconv_from_charset): Removed.
(e_iconv_to_charset): Removed.
(e_iconv_from_locale): Removed.
(e_iconv_to_locale): Removed.
(e_iconv_from_gdk_font): Changd to use new e-iconv apis.
(e_iconv_to_gdk_font): "
(e_font_unref): Close iconv's when done with them.
(translate_encoding): Removed.
(get_locale_charset): Removed.
(e_gdk_font_encoding): Fix for api changes.
* gal/util/e-iconv.c: New stuff to commonify/fix up some problems
with the iconv cache/conversion stuff inside e-font.
svn path=/trunk/; revision=13601
Diffstat (limited to 'e-util/e-iconv.h')
-rw-r--r-- | e-util/e-iconv.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/e-util/e-iconv.h b/e-util/e-iconv.h new file mode 100644 index 0000000000..dee9ce3573 --- /dev/null +++ b/e-util/e-iconv.h @@ -0,0 +1,42 @@ + +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * + * Copyright (C) 2001 Ximian Inc. + * Author: Michael Zucchi <notzed@ximian.com> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#ifndef _E_ICONV_H_ +#define _E_ICONV_H_ + +#include <iconv.h> + +#ifdef __cplusplus +extern "C" { +#pragma } +#endif /* __cplusplus */ + +const char *e_iconv_charset_name(const char *charset); +iconv_t e_iconv_open(const char *oto, const char *ofrom); +void e_iconv_close(iconv_t ip); +const char *e_iconv_locale_charset(void); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* !_E_ICONV_H_ */ |