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