00001 #ifndef _w32_LANGUAGE_H 00002 #define _w32_LANGUAGE_H 00003 00014 #if defined(USE_LANGUAGE) 00015 extern void lang_init (const char *value); 00016 extern const char *lang_xlate (const char *str); 00017 #define _LANG(str) lang_xlate (str) 00018 #else 00019 #define _LANG(str) str 00020 #endif 00021 00022 /* 00023 * __LANG() must be used for array string constants. This macro is used by 00024 * the `mklang' to generate an entry in the language database. 00025 */ 00026 #define __LANG(str) str 00027 00028 #endif
1.3.8