1/* 2 * Copyright 2011 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#include "vbscript_defs.h" 21 22LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT 23 24STRINGTABLE 25{ 26 VBSE_ILLEGAL_FUNC_CALL "Invalid procedure call or argument" 27 VBSE_OVERFLOW "Overflow" 28 VBSE_OUT_OF_MEMORY "Out of memory" 29 VBSE_OUT_OF_BOUNDS "Subscript out of range" 30 VBSE_ARRAY_LOCKED "This array is fixed or temporarily locked" 31 VBSE_TYPE_MISMATCH "Type mismatch" 32 VBSE_FILE_NOT_FOUND "File not found" 33 VBSE_IO_ERROR "Device I/O error" 34 VBSE_FILE_ALREADY_EXISTS "File already exists" 35 VBSE_DISK_FULL "Disk full" 36 VBSE_TOO_MANY_FILES "Too many files" 37 VBSE_PERMISSION_DENIED "Permission denied" 38 VBSE_PATH_FILE_ACCESS "Path/File access error" 39 VBSE_PATH_NOT_FOUND "Path not found" 40 VBSE_OBJECT_VARIABLE_NOT_SET "Object variable not set" 41 VBSE_ILLEGAL_NULL_USE "Invalid use of Null" 42 VBSE_CANT_CREATE_TMP_FILE "Can't create necessary temporary file" 43 VBSE_CANT_CREATE_OBJECT "ActiveX component can't create object" 44 VBSE_OLE_NOT_SUPPORTED "Class doesn't support Automation" 45 VBSE_OLE_FILE_NOT_FOUND "File name or class name not found during Automation operation" 46 VBSE_OLE_NO_PROP_OR_METHOD "Object doesn't support this property or method" 47 VBSE_ACTION_NOT_SUPPORTED "Object doesn't support this action" 48 VBSE_NAMED_ARGS_NOT_SUPPORTED "Object doesn't support named arguments" 49 VBSE_LOCALE_SETTING_NOT_SUPPORTED "Object doesn't support current locale setting" 50 VBSE_NAMED_PARAM_NOT_FOUND "Named argument not found" 51 VBSE_PARAMETER_NOT_OPTIONAL "Named argument not found" 52 VBSE_FUNC_ARITY_MISMATCH "Wrong number of arguments or invalid property assignment" 53 VBSE_NOT_ENUM "Object not a collection" 54 VBSE_INVALID_DLL_FUNCTION_NAME "Specified DLL function not found" 55 VBSE_INVALID_TYPELIB_VARIABLE "Variable uses an Automation type not supported in VBScript" 56 VBSE_SERVER_NOT_FOUND "The remote server machine does not exist or is unavailable" 57 58 VBS_COMPILE_ERROR "Microsoft VBScript compilation error" 59 VBS_RUNTIME_ERROR "Microsoft VBScript runtime error" 60 VBS_UNKNOWN_RUNTIME_ERROR "Unknown runtime error" 61} 62 63LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 64 65/* @makedep: vbscript.rgs */ 662 WINE_REGISTRY vbscript.rgs 67 683 WINE_REGISTRY "vbsglobal.rgs" 694 WINE_REGISTRY "vbsregexp10.rgs" 705 WINE_REGISTRY "vbsregexp55.rgs" 716 WINE_REGISTRY "vbscript_classes.rgs" 72 731 TYPELIB "vbsglobal.tlb" 742 TYPELIB "vbsregexp10.tlb" 753 TYPELIB "vbsregexp55.tlb" 76 77#define WINE_FILEDESCRIPTION_STR "Wine VBScript" 78#define WINE_FILENAME_STR "vbscript.dll" 79#define WINE_FILEVERSION 5,8,7601,16978 80#define WINE_FILEVERSION_STR "5.8.7601.16978" 81#define WINE_PRODUCTVERSION 5,8,0,16978 82#define WINE_PRODUCTVERSION_STR "5.8.7601.16978" 83 84#include "wine/wine_common_ver.rc" 85