1/* 2 * Copyright 2005 Dmitry Timoshkov 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Lesser General Public 6 * License as published by the Free Software Foundation; either 7 * version 2.1 of the License, or (at your option) any later version. 8 * 9 * This library is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * Lesser General Public License for more details. 13 * 14 * You should have received a copy of the GNU Lesser General Public 15 * License along with this library; if not, write to the Free Software 16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 17 */ 18 19#include "msvidc32_private.h" 20 21#ifdef __REACTOS__ 22 #define REACTOS_VERSION_DLL 23 #define REACTOS_STR_FILE_DESCRIPTION "ReactOS Video 1 Compressor" 24 #define REACTOS_STR_INTERNAL_NAME "msvidc32" 25 #define REACTOS_STR_ORIGINAL_FILENAME "msvidc32.dll" 26 #include <reactos/version.rc> 27#endif 28 29/* UTF-8 */ 30#pragma code_page(65001) 31 32#ifdef LANGUAGE_DA_DK 33 #include "lang/msvidc32_Da.rc" 34#endif 35#ifdef LANGUAGE_DE_DE 36 #include "lang/msvidc32_De.rc" 37#endif 38#ifdef LANGUAGE_EN_US 39 #include "lang/msvidc32_En.rc" 40#endif 41#ifdef LANGUAGE_ES_ES 42 #include "lang/msvidc32_Es.rc" 43#endif 44#ifdef LANGUAGE_FR_FR 45 #include "lang/msvidc32_Fr.rc" 46#endif 47#ifdef LANGUAGE_HU_HU 48 #include "lang/msvidc32_Hu.rc" 49#endif 50#ifdef LANGUAGE_IT_IT 51 #include "lang/msvidc32_It.rc" 52#endif 53#ifdef LANGUAGE_JA_JP 54 #include "lang/msvidc32_Ja.rc" 55#endif 56#ifdef LANGUAGE_KO_KR 57 #include "lang/msvidc32_Ko.rc" 58#endif 59#ifdef LANGUAGE_LT_LT 60 #include "lang/msvidc32_Lt.rc" 61#endif 62#ifdef LANGUAGE_NL_NL 63 #include "lang/msvidc32_Nl.rc" 64#endif 65#ifdef LANGUAGE_NO_NO 66 #include "lang/msvidc32_No.rc" 67#endif 68#ifdef LANGUAGE_PL_PL 69 #include "lang/msvidc32_Pl.rc" 70#endif 71#ifdef LANGUAGE_PT_PT 72 #include "lang/msvidc32_Pt.rc" 73#endif 74#ifdef LANGUAGE_RO_RO 75 #include "lang/msvidc32_Ro.rc" 76#endif 77#ifdef LANGUAGE_RU_RU 78 #include "lang/msvidc32_Ru.rc" 79#endif 80#ifdef LANGUAGE_SL_SI 81 #include "lang/msvidc32_Si.rc" 82#endif 83#ifdef LANGUAGE_SQ_AL 84 #include "lang/msvidc32_Sq.rc" 85#endif 86#ifdef LANGUAGE_SV_SE 87 #include "lang/msvidc32_Sv.rc" 88#endif 89#ifdef LANGUAGE_TR_TR 90 #include "lang/msvidc32_Tr.rc" 91#endif 92#ifdef LANGUAGE_UK_UA 93 #include "lang/msvidc32_Uk.rc" 94#endif 95#ifdef LANGUAGE_ZH_CN 96 #include "lang/msvidc32_Zh.rc" 97#endif 98