1#include <windef.h> 2#include <winuser.h> 3 4#include "resource.h" 5 6 7LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 8 9/* UTF-8 */ 10#pragma code_page(65001) 11 12#ifdef LANGUAGE_CS_CZ 13 #include "lang/cs-CZ.rc" 14#endif 15#ifdef LANGUAGE_DE_DE 16 #include "lang/de-DE.rc" 17#endif 18#ifdef LANGUAGE_EN_US 19 #include "lang/en-US.rc" 20#endif 21#ifdef LANGUAGE_ES_ES 22 #include "lang/es-ES.rc" 23#endif 24#ifdef LANGUAGE_FR_FR 25 #include "lang/fr-FR.rc" 26#endif 27#ifdef LANGUAGE_IT_IT 28 #include "lang/it-IT.rc" 29#endif 30#ifdef LANGUAGE_JA_JP 31 #include "lang/ja-JP.rc" 32#endif 33#ifdef LANGUAGE_PL_PL 34 #include "lang/pl-PL.rc" 35#endif 36#ifdef LANGUAGE_RO_RO 37 #include "lang/ro-RO.rc" 38#endif 39#ifdef LANGUAGE_RU_RU 40 #include "lang/ru-RU.rc" 41#endif 42#ifdef LANGUAGE_SV_SE 43 #include "lang/sv-SE.rc" 44#endif 45#ifdef LANGUAGE_TR_TR 46 #include "lang/tr-TR.rc" 47#endif 48#ifdef LANGUAGE_ZH_CN 49 #include "lang/zh-CN.rc" 50#endif 51#ifdef LANGUAGE_ZH_TW 52 #include "lang/zh-TW.rc" 53#endif 54