e: fix e_intl.h

SVN revision: 58299
This commit is contained in:
Boris Faure 2011-04-03 11:56:09 +00:00
parent d4a1030365
commit 75c9350ebe
1 changed files with 6 additions and 6 deletions

View File

@ -1,3 +1,8 @@
#ifdef E_INTERNAL
#if E_INTERNAL
#ifndef E_INTL_H
#define E_INTL_H
#ifdef HAVE_GETTEXT
#define _(str) gettext(str)
@ -11,16 +16,10 @@
*/
#define N_(str) (str)
#ifdef E_INTERNAL
#if E_INTERNAL
#ifdef E_TYPEDEFS
typedef struct _E_Locale_Parts E_Locale_Parts;
#endif
#ifndef E_INTL_H
#define E_INTL_H
#define E_INTL_LOC_CODESET 1 << 0
#define E_INTL_LOC_REGION 1 << 1
#define E_INTL_LOC_MODIFIER 1 << 2
@ -56,6 +55,7 @@ EAPI E_Locale_Parts *e_intl_locale_parts_get(const char *locale);
EAPI void e_intl_locale_parts_free(E_Locale_Parts *locale_parts);
EAPI char *e_intl_locale_parts_combine(E_Locale_Parts *locale_parts, int mask);
EAPI char *e_intl_locale_charset_canonic_get(const char *charset);
#endif
#endif
#endif