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" 25IDB_REACTOS BITMAP "resources/reactos.bmp" 26IDB_LINE BITMAP "resources/line.bmp" 27 28IDI_ICON1 ICON "resources/1.ico" 29IDI_ICON2 ICON "resources/2.ico" 30IDI_ICON3 ICON "resources/3.ico" 31IDI_ICON4 ICON "resources/4.ico" 32IDI_ICON5 ICON "resources/5.ico" 33 34STRINGTABLE 35BEGIN 36 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" 37END 38 39IDR_GPL RT_TEXT "COPYING" 40 41/* 42 * Everything specific to any language goes in one of the specific 43 * files. Note that you can and may override resources which also have 44 * a neutral version. This is to get localized bitmaps for example. 45 */ 46 47/* UTF-8 */ 48#pragma code_page(65001) 49 50#ifdef LANGUAGE_BG_BG 51 #include "lang/bg-BG.rc" 52#endif 53#ifdef LANGUAGE_CS_CZ 54 #include "lang/cs-CZ.rc" 55#endif 56#ifdef LANGUAGE_DA_DK 57 #include "lang/da-DK.rc" 58#endif 59#ifdef LANGUAGE_DE_DE 60 #include "lang/de-DE.rc" 61#endif 62#ifdef LANGUAGE_EL_GR 63 #include "lang/el-GR.rc" 64#endif 65#ifdef LANGUAGE_EN_GB 66 #include "lang/en-GB.rc" 67#endif 68#ifdef LANGUAGE_EN_US 69 #include "lang/en-US.rc" 70#endif 71#ifdef LANGUAGE_ES_ES 72 #include "lang/es-ES.rc" 73#endif 74#ifdef LANGUAGE_ET_EE 75 #include "lang/et-EE.rc" 76#endif 77#ifdef LANGUAGE_EU_ES 78 #include "lang/eu-ES.rc" 79#endif 80#ifdef LANGUAGE_FI_FI 81 #include "lang/fi-FI.rc" 82#endif 83#ifdef LANGUAGE_FR_FR 84 #include "lang/fr-FR.rc" 85#endif 86#ifdef LANGUAGE_HE_IL 87 #include "lang/he-IL.rc" 88#endif 89#ifdef LANGUAGE_HI_IN 90 #include "lang/hi-IN.rc" 91#endif 92#ifdef LANGUAGE_HU_HU 93 #include "lang/hu-HU.rc" 94#endif 95#ifdef LANGUAGE_ID_ID 96 #include "lang/id-ID.rc" 97#endif 98#ifdef LANGUAGE_IT_IT 99 #include "lang/it-IT.rc" 100#endif 101#ifdef LANGUAGE_JA_JP 102 #include "lang/ja-JP.rc" 103#endif 104#ifdef LANGUAGE_LT_LT 105 #include "lang/lt-LT.rc" 106#endif 107#ifdef LANGUAGE_NB_NO 108 #include "lang/no-NO.rc" 109#endif 110#ifdef LANGUAGE_NL_NL 111 #include "lang/nl-NL.rc" 112#endif 113#ifdef LANGUAGE_PL_PL 114 #include "lang/pl-PL.rc" 115#endif 116#ifdef LANGUAGE_PT_BR 117 #include "lang/pt-BR.rc" 118#endif 119#ifdef LANGUAGE_PT_PT 120 #include "lang/pt-PT.rc" 121#endif 122#ifdef LANGUAGE_RO_RO 123 #include "lang/ro-RO.rc" 124#endif 125#ifdef LANGUAGE_RU_RU 126 #include "lang/ru-RU.rc" 127#endif 128#ifdef LANGUAGE_SK_SK 129 #include "lang/sk-SK.rc" 130#endif 131#ifdef LANGUAGE_SQ_AL 132 #include "lang/sq-AL.rc" 133#endif 134#ifdef LANGUAGE_SV_SE 135 #include "lang/sv-SE.rc" 136#endif 137#ifdef LANGUAGE_TH_TH 138 #include "lang/th-TH.rc" 139#endif 140#ifdef LANGUAGE_TR_TR 141 #include "lang/tr-TR.rc" 142#endif 143#ifdef LANGUAGE_UK_UA 144 #include "lang/uk-UA.rc" 145#endif 146#ifdef LANGUAGE_ZH_CN 147 #include "lang/zh-CN.rc" 148#endif 149#ifdef LANGUAGE_ZH_HK 150 #include "lang/zh-HK.rc" 151#endif 152#ifdef LANGUAGE_ZH_TW 153 #include "lang/zh-TW.rc" 154#endif 155