1#include <windef.h> 2#include <winuser.h> 3 4#include "resource.h" 5 6LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 7 8#define REACTOS_VERSION_DLL 9#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Software Control Panel" 10#define REACTOS_STR_INTERNAL_NAME "joy" 11#define REACTOS_STR_ORIGINAL_FILENAME "joy.cpl" 12#include <reactos/version.rc> 13 14IDI_CPLSYSTEM ICON "resources/applet.ico" 15 16#include <reactos/manifest_dll.rc> 17 18#ifdef LANGUAGE_BG_BG 19 #include "lang/bg-BG.rc" 20#endif 21#ifdef LANGUAGE_CS_CZ 22 #include "lang/cs-CZ.rc" 23#endif 24#ifdef LANGUAGE_DE_DE 25 #include "lang/de-DE.rc" 26#endif 27#ifdef LANGUAGE_EL_GR 28 #include "lang/el-GR.rc" 29#endif 30#ifdef LANGUAGE_EN_US 31 #include "lang/en-US.rc" 32#endif 33#ifdef LANGUAGE_ES_ES 34 #include "lang/es-ES.rc" 35#endif 36#ifdef LANGUAGE_FR_FR 37 #include "lang/fr-FR.rc" 38#endif 39#ifdef LANGUAGE_IT_IT 40 #include "lang/it-IT.rc" 41#endif 42#ifdef LANGUAGE_NB_NO 43 #include "lang/no-NO.rc" 44#endif 45#ifdef LANGUAGE_SK_SK 46 #include "lang/sk-SK.rc" 47#endif 48#ifdef LANGUAGE_ZH_CN 49 #include "lang/zh-CN.rc" 50#endif 51 52/* UTF-8 */ 53#pragma code_page(65001) 54 55#ifdef LANGUAGE_HE_IL 56 #include "lang/he-IL.rc" 57#endif 58#ifdef LANGUAGE_PL_PL 59 #include "lang/pl-PL.rc" 60#endif 61#ifdef LANGUAGE_RO_RO 62 #include "lang/ro-RO.rc" 63#endif 64#ifdef LANGUAGE_RU_RU 65 #include "lang/ru-RU.rc" 66#endif 67#ifdef LANGUAGE_TR_TR 68 #include "lang/tr-TR.rc" 69#endif 70#ifdef LANGUAGE_UK_UA 71 #include "lang/uk-UA.rc" 72#endif 73