1/* 2 * Copyright 2008 Jacek Caban for CodeWeavers 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 <windef.h> 20 21#include "resource.h" 22 23/* @makedep: jscript.rgs */ 242 WINE_REGISTRY jscript.rgs 25 263 WINE_REGISTRY jscript_classes.rgs 27 28/* @makedep: jsglobal.tlb */ 291 TYPELIB jsglobal.tlb 30 31#define WINE_FILEDESCRIPTION_STR "Wine JScript" 32#define WINE_FILENAME_STR "jscript.dll" 33#define WINE_FILEVERSION 5,7,7601,16982 34#define WINE_FILEVERSION_STR "5.8.7601.16982" 35#define WINE_PRODUCTVERSION 5,8,7601,16982 36#define WINE_PRODUCTVERSION_STR "5.8.7601.16982" 37 38#include "wine/wine_common_ver.rc" 39 40/* UTF-8 */ 41#pragma code_page(65001) 42 43#ifdef LANGUAGE_DA_DK 44 #include "lang/jscript_Da.rc" 45#endif 46#ifdef LANGUAGE_DE_DE 47 #include "lang/jscript_De.rc" 48#endif 49#ifdef LANGUAGE_EN_US 50 #include "lang/jscript_En.rc" 51#endif 52#ifdef LANGUAGE_ES_ES 53 #include "lang/jscript_Es.rc" 54#endif 55#ifdef LANGUAGE_FR_FR 56 #include "lang/jscript_Fr.rc" 57#endif 58#ifdef LANGUAGE_HE_IL 59 #include "lang/jscript_He.rc" 60#endif 61#ifdef LANGUAGE_HU_HU 62 #include "lang/jscript_Hu.rc" 63#endif 64#ifdef LANGUAGE_IT_IT 65 #include "lang/jscript_It.rc" 66#endif 67#ifdef LANGUAGE_JA_JP 68 #include "lang/jscript_Ja.rc" 69#endif 70#ifdef LANGUAGE_KO_KR 71 #include "lang/jscript_Ko.rc" 72#endif 73#ifdef LANGUAGE_LT_LT 74 #include "lang/jscript_Lt.rc" 75#endif 76#ifdef LANGUAGE_NL_NL 77 #include "lang/jscript_Nl.rc" 78#endif 79#ifdef LANGUAGE_NO_NO 80 #include "lang/jscript_No.rc" 81#endif 82#ifdef LANGUAGE_PL_PL 83 #include "lang/jscript_Pl.rc" 84#endif 85#ifdef LANGUAGE_PT_PT 86 #include "lang/jscript_Pt.rc" 87#endif 88#ifdef LANGUAGE_RO_RO 89 #include "lang/jscript_Ro.rc" 90#endif 91#ifdef LANGUAGE_RU_RU 92 #include "lang/jscript_Ru.rc" 93#endif 94#ifdef LANGUAGE_SL_SI 95 #include "lang/jscript_Si.rc" 96#endif 97#ifdef LANGUAGE_SQ_AL 98 #include "lang/jscript_Sq.rc" 99#endif 100#ifdef LANGUAGE_TR_TR 101 #include "lang/jscript_Tr.rc" 102#endif 103#ifdef LANGUAGE_UK_UA 104 #include "lang/jscript_Uk.rc" 105#endif 106#ifdef LANGUAGE_ZH_CN 107 #include "lang/jscript_Zh.rc" 108#endif