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_MOUSE_HIDE ICON "resources/mouse_hide.ico" 25IDI_PRINTERS_FOLDER ICON "../../win32/shell32/res/icons/38.ico" // IDI_SHELL_PRINTERS_FOLDER 26IDI_FONTS_FOLDER ICON "../../win32/shell32/res/icons/39.ico" // IDI_SHELL_FONTS_FOLDER 27IDI_ADMIN_TOOLS_FOLDER ICON "resources/admintools_folder.ico" 28IDI_MOUSE_POINTER ICON "resources/mouse_pointer.ico" 29IDI_MOUSE_WHEEL ICON "resources/mouse_wheel.ico" 30IDI_REPEAT_RATE ICON "resources/repeat_rate.ico" 31IDI_REPEAT_DELAY ICON "resources/repeat_delay.ico" 32IDI_LOCK_KEY ICON "resources/lock_key.ico" 33 34#include <reactos/manifest_hosted.rc> 35 36/* UTF-8 */ 37#pragma code_page(65001) 38 39#ifdef LANGUAGE_BG_BG 40 #include "lang/bg-BG.rc" 41#endif 42#ifdef LANGUAGE_CS_CZ 43 #include "lang/cs-CZ.rc" 44#endif 45#ifdef LANGUAGE_DE_DE 46 #include "lang/de-DE.rc" 47#endif 48#ifdef LANGUAGE_EL_GR 49 #include "lang/el-GR.rc" 50#endif 51#ifdef LANGUAGE_EN_US 52 #include "lang/en-US.rc" 53#endif 54#ifdef LANGUAGE_ES_ES 55 #include "lang/es-ES.rc" 56#endif 57#ifdef LANGUAGE_FR_FR 58 #include "lang/fr-FR.rc" 59#endif 60#ifdef LANGUAGE_HE_IL 61 #include "lang/he-IL.rc" 62#endif 63#ifdef LANGUAGE_HU_HU 64 #include "lang/hu-HU.rc" 65#endif 66#ifdef LANGUAGE_ID_ID 67 #include "lang/id-ID.rc" 68#endif 69#ifdef LANGUAGE_IT_IT 70 #include "lang/it-IT.rc" 71#endif 72#ifdef LANGUAGE_JA_JP 73 #include "lang/ja-JP.rc" 74#endif 75#ifdef LANGUAGE_NL_NL 76 #include "lang/nl-NL.rc" 77#endif 78#ifdef LANGUAGE_NB_NO 79 #include "lang/no-NO.rc" 80#endif 81#ifdef LANGUAGE_PL_PL 82 #include "lang/pl-PL.rc" 83#endif 84#ifdef LANGUAGE_PT_PT 85 #include "lang/pt-PT.rc" 86#endif 87#ifdef LANGUAGE_RO_RO 88 #include "lang/ro-RO.rc" 89#endif 90#ifdef LANGUAGE_RU_RU 91 #include "lang/ru-RU.rc" 92#endif 93#ifdef LANGUAGE_SK_SK 94 #include "lang/sk-SK.rc" 95#endif 96#ifdef LANGUAGE_SQ_AL 97 #include "lang/sq-AL.rc" 98#endif 99#ifdef LANGUAGE_TR_TR 100 #include "lang/tr-TR.rc" 101#endif 102#ifdef LANGUAGE_UK_UA 103 #include "lang/uk-UA.rc" 104#endif 105#ifdef LANGUAGE_ZH_CN 106 #include "lang/zh-CN.rc" 107#endif 108#ifdef LANGUAGE_ZH_HK 109 #include "lang/zh-HK.rc" 110#endif 111#ifdef LANGUAGE_ZH_TW 112 #include "lang/zh-TW.rc" 113#endif 114