1/* 2 * Top level resource file for MS-RLE 3 * 4 * Copyright 2002 Michael Günnewig 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either 9 * version 2.1 of the License, or (at your option) any later version. 10 * 11 * This library is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * Lesser General Public License for more details. 15 * 16 * You should have received a copy of the GNU Lesser General Public 17 * License along with this library; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 19 */ 20 21#include "msrle_private.h" 22 23#ifdef __REACTOS__ 24 #define REACTOS_VERSION_DLL 25 #define REACTOS_STR_FILE_DESCRIPTION "ReactOS RLE Compressor" 26 #define REACTOS_STR_INTERNAL_NAME "msrle32" 27 #define REACTOS_STR_ORIGINAL_FILENAME "msrle32.dll" 28 #include <reactos/version.rc> 29#endif 30 31/* 32 * Everything specific to any language goes 33 * in one of the specific files. 34 * Note that you can and may override resources 35 * which also have a neutral version. This is to 36 * get localized bitmaps for example. 37 */ 38 39/* UTF-8 */ 40#pragma code_page(65001) 41 42#ifdef LANGUAGE_BG_BG 43 #include "lang/msrle_Bg.rc" 44#endif 45#ifdef LANGUAGE_CS_CZ 46 #include "lang/msrle_Cs.rc" 47#endif 48#ifdef LANGUAGE_DA_DK 49 #include "lang/msrle_Da.rc" 50#endif 51#ifdef LANGUAGE_DE_DE 52 #include "lang/msrle_De.rc" 53#endif 54#ifdef LANGUAGE_EN_US 55 #include "lang/msrle_En.rc" 56#endif 57#ifdef LANGUAGE_ES_ES 58 #include "lang/msrle_Es.rc" 59#endif 60#ifdef LANGUAGE_FR_FR 61 #include "lang/msrle_Fr.rc" 62#endif 63#ifdef LANGUAGE_HE_IL 64 #include "lang/msrle_He.rc" 65#endif 66#ifdef LANGUAGE_HU_HU 67 #include "lang/msrle_Hu.rc" 68#endif 69#ifdef LANGUAGE_IT_IT 70 #include "lang/msrle_It.rc" 71#endif 72#ifdef LANGUAGE_JA_JP 73 #include "lang/msrle_Ja.rc" 74#endif 75#ifdef LANGUAGE_KO_KR 76 #include "lang/msrle_Ko.rc" 77#endif 78#ifdef LANGUAGE_LT_LT 79 #include "lang/msrle_Lt.rc" 80#endif 81#ifdef LANGUAGE_NL_NL 82 #include "lang/msrle_Nl.rc" 83#endif 84#ifdef LANGUAGE_NO_NO 85 #include "lang/msrle_No.rc" 86#endif 87#ifdef LANGUAGE_PL_PL 88 #include "lang/msrle_Pl.rc" 89#endif 90#ifdef LANGUAGE_PT_PT 91 #include "lang/msrle_Pt.rc" 92#endif 93#ifdef LANGUAGE_RO_RO 94 #include "lang/msrle_Ro.rc" 95#endif 96#ifdef LANGUAGE_RU_RU 97 #include "lang/msrle_Ru.rc" 98#endif 99#ifdef LANGUAGE_SL_SI 100 #include "lang/msrle_Si.rc" 101#endif 102#ifdef LANGUAGE_SQ_AL 103 #include "lang/msrle_Sq.rc" 104#endif 105#ifdef LANGUAGE_SV_SE 106 #include "lang/msrle_Sv.rc" 107#endif 108#ifdef LANGUAGE_TR_TR 109 #include "lang/msrle_Tr.rc" 110#endif 111#ifdef LANGUAGE_UK_UA 112 #include "lang/msrle_Uk.rc" 113#endif 114#ifdef LANGUAGE_ZH_CN 115 #include "lang/msrle_Zh.rc" 116#endif 117