#ifndef GNUPG_COMMON_I18N_H
#define GNUPG_COMMON_I18N_H
+
#ifdef USE_SIMPLE_GETTEXT
- int set_gettext_file( const char *filename );
- const char *gettext( const char *msgid );
+# include "../common/w32help.h"
# define _(a) gettext (a)
# define N_(a) (a)
#else
# else
# define _(a) (a)
# define N_(a) (a)
+# define ngettext(a,b,c) ((c)==1? (a):(b))
# endif
#endif /*!USE_SIMPLE_GETTEXT*/
+void i18n_init (void);
+char *i18n_switchto_utf8 (void);
+void i18n_switchback (char *saved_codeset);
+const char *i18n_utf8 (const char *string);
+
+
#endif /*GNUPG_COMMON_I18N_H*/