X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fgettext.h;h=0e6ee0fd5f779965a1dc7d10caeb3f214c880284;hb=fadf248892eae825b57d283032594ed924d8dbea;hp=b62421c78d908c148b43c62638045df0d65804cd;hpb=2f6e93192178e96303f11ecf783f0de36ddebeb3;p=oweals%2Fminetest.git diff --git a/src/gettext.h b/src/gettext.h index b62421c78..0e6ee0fd5 100644 --- a/src/gettext.h +++ b/src/gettext.h @@ -1,5 +1,6 @@ #ifndef GETTEXT_HEADER #include "config.h" // for USE_GETTEXT +#include #if USE_GETTEXT #include @@ -13,8 +14,8 @@ inline void init_gettext(const char *path) { #if USE_GETTEXT - #if MSVC - #else + // don't do this if MSVC compiler is used, it gives an assertion fail + #ifndef _MSC_VER setlocale(LC_MESSAGES, ""); #endif bindtextdomain(PROJECT_NAME, path); @@ -30,6 +31,11 @@ inline wchar_t* chartowchar_t(const char *str) return nstr; } +inline wchar_t* wgettext(const char *str) +{ + return chartowchar_t(gettext(str)); +} + inline void changeCtype(const char *l) { char *ret = NULL;