1#include <windef.h> 2#include <winuser.h> 3#include <commctrl.h> 4 5#include "resource.h" 6 7LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 8 9#define REACTOS_VERSION_DLL 10#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Keyboard Control Panel" 11#define REACTOS_STR_INTERNAL_NAME "main" 12#define REACTOS_STR_ORIGINAL_FILENAME "main.cpl" 13#include <reactos/version.rc> 14 15IDC_CPLICON_1 ICON "resources/mouse.ico" 16IDC_CPLICON_2 ICON "resources/keyboard.ico" 17IDI_FOLDER_OPEN ICON "resources/folder_open.ico" 18IDI_FOLDER_CLOSED ICON "resources/folder_closed.ico" 19IDI_MOUSE_LEFT ICON "resources/mouse_left.ico" 20IDI_MOUSE_RIGHT ICON "resources/mouse_right.ico" 21IDI_MOUSE_SPEED ICON "resources/mouse_speed.ico" 22IDI_MOUSE_BUTTON ICON "resources/mouse_button.ico" 23IDI_MOUSE_TRAILS ICON "resources/mouse_trails.ico" 24IDI_FONTS_FOLDER ICON "resources/fonts_folder.ico" 25IDI_ADMIN_TOOLS_FOLDER ICON "resources/admintools_folder.ico" 26IDI_MOUSE_POINTER ICON "resources/mouse_pointer.ico" 27IDI_MOUSE_WHEEL ICON "resources/mouse_wheel.ico" 28IDI_REPEAT_RATE ICON "resources/repeat_rate.ico" 29IDI_REPEAT_DELAY ICON "resources/repeat_delay.ico" 30IDI_LOOK_KEY ICON "resources/look_key.ico" 31 32#include <reactos/manifest_hosted.rc> 33 34/* UTF-8 */ 35#pragma code_page(65001) 36 37#ifdef LANGUAGE_BG_BG 38 #include "lang/bg-BG.rc" 39#endif 40#ifdef LANGUAGE_CS_CZ 41 #include "lang/cs-CZ.rc" 42#endif 43#ifdef LANGUAGE_DE_DE 44 #include "lang/de-DE.rc" 45#endif 46#ifdef LANGUAGE_EL_GR 47 #include "lang/el-GR.rc" 48#endif 49#ifdef LANGUAGE_EN_US 50 #include "lang/en-US.rc" 51#endif 52#ifdef LANGUAGE_ES_ES 53 #include "lang/es-ES.rc" 54#endif 55#ifdef LANGUAGE_FR_FR 56 #include "lang/fr-FR.rc" 57#endif 58#ifdef LANGUAGE_HE_IL 59 #include "lang/he-IL.rc" 60#endif 61#ifdef LANGUAGE_HU_HU 62 #include "lang/hu-HU.rc" 63#endif 64#ifdef LANGUAGE_ID_ID 65 #include "lang/id-ID.rc" 66#endif 67#ifdef LANGUAGE_IT_IT 68 #include "lang/it-IT.rc" 69#endif 70#ifdef LANGUAGE_JA_JP 71 #include "lang/ja-JP.rc" 72#endif 73#ifdef LANGUAGE_NL_NL 74 #include "lang/nl-NL.rc" 75#endif 76#ifdef LANGUAGE_NB_NO 77 #include "lang/no-NO.rc" 78#endif 79#ifdef LANGUAGE_PL_PL 80 #include "lang/pl-PL.rc" 81#endif 82#ifdef LANGUAGE_PT_PT 83 #include "lang/pt-PT.rc" 84#endif 85#ifdef LANGUAGE_RO_RO 86 #include "lang/ro-RO.rc" 87#endif 88#ifdef LANGUAGE_RU_RU 89 #include "lang/ru-RU.rc" 90#endif 91#ifdef LANGUAGE_SK_SK 92 #include "lang/sk-SK.rc" 93#endif 94#ifdef LANGUAGE_SQ_AL 95 #include "lang/sq-AL.rc" 96#endif 97#ifdef LANGUAGE_TR_TR 98 #include "lang/tr-TR.rc" 99#endif 100#ifdef LANGUAGE_UK_UA 101 #include "lang/uk-UA.rc" 102#endif 103#ifdef LANGUAGE_ZH_CN 104 #include "lang/zh-CN.rc" 105#endif 106#ifdef LANGUAGE_ZH_TW 107 #include "lang/zh-TW.rc" 108#endif