1#include <windef.h> 2#include <winuser.h> 3#include <commctrl.h> 4 5#include "resource.h" 6 7#define REACTOS_VERSION_DLL 8#define REACTOS_STR_FILE_DESCRIPTION "System Setup DLL" 9#define REACTOS_STR_INTERNAL_NAME "syssetup" 10#define REACTOS_STR_ORIGINAL_FILENAME "syssetup.dll" 11#include <reactos/version.rc> 12 13/* Ask for common controls v6 (BCM_SETIMAGELIST) */ 14#include <reactos/manifest_dll.rc> 15 16LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 17 18/* Bitmaps */ 19IDB_WATERMARK BITMAP "resources/watermark.bmp" 20IDB_HEADER BITMAP "resources/header.bmp" 21IDB_CLASSIC BITMAP "resources/thmclassic.bmp" 22IDB_LAUTUS BITMAP "resources/thmlautus.bmp" 23IDB_LUNAR BITMAP "resources/thmlunar.bmp" 24IDB_MIZU BITMAP "resources/thmmizu.bmp" 25 26IDI_ICON1 ICON "resources/1.ico" 27IDI_ICON2 ICON "resources/2.ico" 28IDI_ICON3 ICON "resources/3.ico" 29IDI_ICON4 ICON "resources/4.ico" 30IDI_ICON5 ICON "resources/5.ico" 31 32STRINGTABLE 33BEGIN 34 IDS_ACKPROJECTS "Wine - http://www.winehq.org\nFreeType - http://www.freetype.org\nSYSLINUX - http://syslinux.zytor.com\nMinGW - http://www.mingw.org\nBochs - http://bochs.sourceforge.net\nQEMU - http://fabrice.bellard.free.fr/qemu\nMesa3D - http://www.mesa3d.org\nadns - http://www.gnu.org/software/adns\nICU - http://www.icu-project.org/\nGraphApp - http://enchantia.com/software/graphapp/\nExt2 - http://www.ext2fsd.com/\nGNU FreeFont - http://savannah.gnu.org/projects/freefont/\nDejaVu Fonts - http://dejavu.sourceforge.net\nLiberation(tm) Fonts - https://fedorahosted.org/liberation-fonts/\nBtrfs - https://github.com/maharmstone/btrfs" 35END 36 37IDR_GPL RT_TEXT "COPYING" 38 39/* 40 * Everything specific to any language goes in one of the specific 41 * files. Note that you can and may override resources which also have 42 * a neutral version. This is to get localized bitmaps for example. 43 */ 44 45/* UTF-8 */ 46#pragma code_page(65001) 47 48#ifdef LANGUAGE_BG_BG 49 #include "lang/bg-BG.rc" 50#endif 51#ifdef LANGUAGE_CS_CZ 52 #include "lang/cs-CZ.rc" 53#endif 54#ifdef LANGUAGE_DA_DK 55 #include "lang/da-DK.rc" 56#endif 57#ifdef LANGUAGE_DE_DE 58 #include "lang/de-DE.rc" 59#endif 60#ifdef LANGUAGE_EL_GR 61 #include "lang/el-GR.rc" 62#endif 63#ifdef LANGUAGE_EN_US 64 #include "lang/en-US.rc" 65#endif 66#ifdef LANGUAGE_ES_ES 67 #include "lang/es-ES.rc" 68#endif 69#ifdef LANGUAGE_ET_EE 70 #include "lang/et-EE.rc" 71#endif 72#ifdef LANGUAGE_FI_FI 73 #include "lang/fi-FI.rc" 74#endif 75#ifdef LANGUAGE_FR_FR 76 #include "lang/fr-FR.rc" 77#endif 78#ifdef LANGUAGE_HE_IL 79 #include "lang/he-IL.rc" 80#endif 81#ifdef LANGUAGE_HI_IN 82 #include "lang/hi-IN.rc" 83#endif 84#ifdef LANGUAGE_HU_HU 85 #include "lang/hu-HU.rc" 86#endif 87#ifdef LANGUAGE_ID_ID 88 #include "lang/id-ID.rc" 89#endif 90#ifdef LANGUAGE_IT_IT 91 #include "lang/it-IT.rc" 92#endif 93#ifdef LANGUAGE_JA_JP 94 #include "lang/ja-JP.rc" 95#endif 96#ifdef LANGUAGE_LT_LT 97 #include "lang/lt-LT.rc" 98#endif 99#ifdef LANGUAGE_NB_NO 100 #include "lang/no-NO.rc" 101#endif 102#ifdef LANGUAGE_NL_NL 103 #include "lang/nl-NL.rc" 104#endif 105#ifdef LANGUAGE_PL_PL 106 #include "lang/pl-PL.rc" 107#endif 108#ifdef LANGUAGE_PT_BR 109 #include "lang/pt-BR.rc" 110#endif 111#ifdef LANGUAGE_PT_PT 112 #include "lang/pt-PT.rc" 113#endif 114#ifdef LANGUAGE_RO_RO 115 #include "lang/ro-RO.rc" 116#endif 117#ifdef LANGUAGE_RU_RU 118 #include "lang/ru-RU.rc" 119#endif 120#ifdef LANGUAGE_SK_SK 121 #include "lang/sk-SK.rc" 122#endif 123#ifdef LANGUAGE_SQ_AL 124 #include "lang/sq-AL.rc" 125#endif 126#ifdef LANGUAGE_SV_SE 127 #include "lang/sv-SE.rc" 128#endif 129#ifdef LANGUAGE_TH_TH 130 #include "lang/th-TH.rc" 131#endif 132#ifdef LANGUAGE_TR_TR 133 #include "lang/tr-TR.rc" 134#endif 135#ifdef LANGUAGE_UK_UA 136 #include "lang/uk-UA.rc" 137#endif 138#ifdef LANGUAGE_ZH_CN 139 #include "lang/zh-CN.rc" 140#endif 141#ifdef LANGUAGE_ZH_TW 142 #include "lang/zh-TW.rc" 143#endif 144