diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2001-02-05 22:34:39 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-02-05 22:34:39 +0800 |
commit | 5738d07c05f9beea4e4dbf284d7de20c041d57b7 (patch) | |
tree | a5fa3c7860218852354e02fd8753b216cf5d3102 | |
parent | 4afe7dc7708bfce195bc7434f46bddc2f62559c2 (diff) | |
download | gsoc2013-evolution-5738d07c05f9beea4e4dbf284d7de20c041d57b7.tar gsoc2013-evolution-5738d07c05f9beea4e4dbf284d7de20c041d57b7.tar.gz gsoc2013-evolution-5738d07c05f9beea4e4dbf284d7de20c041d57b7.tar.bz2 gsoc2013-evolution-5738d07c05f9beea4e4dbf284d7de20c041d57b7.tar.lz gsoc2013-evolution-5738d07c05f9beea4e4dbf284d7de20c041d57b7.tar.xz gsoc2013-evolution-5738d07c05f9beea4e4dbf284d7de20c041d57b7.tar.zst gsoc2013-evolution-5738d07c05f9beea4e4dbf284d7de20c041d57b7.zip |
Added declarations for all the functions declared in gnome-i18n.h.
2001-02-05 Christopher James Lahey <clahey@helixcode.com>
* gal/util/e-i18n.h: Added declarations for all the functions
declared in gnome-i18n.h.
svn path=/trunk/; revision=7968
-rw-r--r-- | e-util/e-i18n.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/e-util/e-i18n.h b/e-util/e-i18n.h index 9a64b9c86a..3b60d5339f 100644 --- a/e-util/e-i18n.h +++ b/e-util/e-i18n.h @@ -14,6 +14,11 @@ #ifndef __E_I18N_H__ #define __E_I18N_H__ +#include <glib.h> +#include "libgnome/gnome-defs.h" + +BEGIN_GNOME_DECLS + #ifdef ENABLE_NLS # include <libintl.h> # undef _ @@ -42,6 +47,16 @@ * To correctly solve this issue include this file before any libgnome/ * libgnomeui headers */ + #define __GNOME_I18N_H__ 1 + +const char *gnome_i18n_get_language(void); +GList *gnome_i18n_get_language_list (const gchar *category_name); +void gnome_i18n_set_preferred_language (const char *val); +const char *gnome_i18n_get_preferred_language (void); +void gnome_i18n_init (void); + +END_GNOME_DECLS + #endif /* __E_I18N_H__ */ |