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