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 Hardware Control Panel" 11#define REACTOS_STR_INTERNAL_NAME "hdwwiz" 12#define REACTOS_STR_ORIGINAL_FILENAME "hdwwiz.cpl" 13 14#include <reactos/version.rc> 15 16IDI_CPLICON ICON "resources/applet.ico" 17IDI_WARNINGICON ICON "resources/warning.ico" 18IDI_SEARCHICON ICON "resources/search.ico" 19 20IDB_WATERMARK BITMAP "resources/watermark.bmp" 21IDB_HEADER BITMAP "resources/header.bmp" 22 23#include <reactos/manifest_hosted.rc> 24 25/* UTF-8 */ 26#pragma code_page(65001) 27 28#ifdef LANGUAGE_BG_BG 29 #include "lang/bg-BG.rc" 30#endif 31#ifdef LANGUAGE_CS_CZ 32 #include "lang/cs-CZ.rc" 33#endif 34#ifdef LANGUAGE_DE_DE 35 #include "lang/de-DE.rc" 36#endif 37#ifdef LANGUAGE_EL_GR 38 #include "lang/el-GR.rc" 39#endif 40#ifdef LANGUAGE_EN_US 41 #include "lang/en-US.rc" 42#endif 43#ifdef LANGUAGE_ES_ES 44 #include "lang/es-ES.rc" 45#endif 46#ifdef LANGUAGE_FR_FR 47 #include "lang/fr-FR.rc" 48#endif 49#ifdef LANGUAGE_HE_IL 50 #include "lang/he-IL.rc" 51#endif 52#ifdef LANGUAGE_HU_HU 53 #include "lang/hu-HU.rc" 54#endif 55#ifdef LANGUAGE_ID_ID 56 #include "lang/id-ID.rc" 57#endif 58#ifdef LANGUAGE_IT_IT 59 #include "lang/it-IT.rc" 60#endif 61#ifdef LANGUAGE_JA_JP 62 #include "lang/ja-JP.rc" 63#endif 64#ifdef LANGUAGE_NL_NL 65 #include "lang/nl-NL.rc" 66#endif 67#ifdef LANGUAGE_NB_NO 68 #include "lang/no-NO.rc" 69#endif 70#ifdef LANGUAGE_PL_PL 71 #include "lang/pl-PL.rc" 72#endif 73#ifdef LANGUAGE_PT_BR 74 #include "lang/pt-BR.rc" 75#endif 76#ifdef LANGUAGE_PT_PT 77 #include "lang/pt-PT.rc" 78#endif 79#ifdef LANGUAGE_RO_RO 80 #include "lang/ro-RO.rc" 81#endif 82#ifdef LANGUAGE_RU_RU 83 #include "lang/ru-RU.rc" 84#endif 85#ifdef LANGUAGE_SK_SK 86 #include "lang/sk-SK.rc" 87#endif 88#ifdef LANGUAGE_SQ_AL 89 #include "lang/sq-AL.rc" 90#endif 91#ifdef LANGUAGE_TH_TH 92 #include "lang/th-TH.rc" 93#endif 94#ifdef LANGUAGE_TR_TR 95 #include "lang/tr-TR.rc" 96#endif 97#ifdef LANGUAGE_UK_UA 98 #include "lang/uk-UA.rc" 99#endif 100#ifdef LANGUAGE_ZH_CN 101 #include "lang/zh-CN.rc" 102#endif 103#ifdef LANGUAGE_ZH_HK 104 #include "lang/zh-HK.rc" 105#endif 106#ifdef LANGUAGE_ZH_TW 107 #include "lang/zh-TW.rc" 108#endif 109