1#include <windef.h> 2 3#define REACTOS_VERSION_DLL 4#define REACTOS_STR_FILE_DESCRIPTION "Unicode name DLL" 5#define REACTOS_STR_INTERNAL_NAME "getuname" 6#define REACTOS_STR_ORIGINAL_FILENAME "getuname.dll" 7#include <reactos/version.rc> 8 9/* UTF-8 */ 10#pragma code_page(65001) 11 12/* Only use english on debug builds to reduce compile time */ 13#if DBG 14 #include "lang/en-US.rc" 15#else 16#ifdef LANGUAGE_DE_DE 17 #include "lang/de-DE.rc" 18#endif 19#ifdef LANGUAGE_EN_US 20 #include "lang/en-US.rc" 21#endif 22#ifdef LANGUAGE_FR_FR 23 #include "lang/fr-FR.rc" 24#endif 25#ifdef LANGUAGE_PL_PL 26 #include "lang/pl-PL.rc" 27#endif 28#ifdef LANGUAGE_RO_RO 29 #include "lang/ro-RO.rc" 30#endif 31#ifdef LANGUAGE_RU_RU 32 #include "lang/ru-RU.rc" 33#endif 34#ifdef LANGUAGE_SQ_AL 35 #include "lang/sq-AL.rc" 36#endif 37#ifdef LANGUAGE_ZH_CN 38 #include "lang/zh-CN.rc" 39#endif 40#ifdef LANGUAGE_ZH_HK 41 #include "lang/zh-HK.rc" 42#endif 43#ifdef LANGUAGE_ZH_TW 44 #include "lang/zh-TW.rc" 45#endif 46#endif /* DBG */ 47