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