77 lines
3.7 KiB
Plaintext
77 lines
3.7 KiB
Plaintext
/*
|
|
* Copyright 2011 Jacek Caban for CodeWeavers
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <windef.h>
|
|
#include "vbscript_defs.h"
|
|
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
|
|
|
|
STRINGTABLE
|
|
{
|
|
VBSE_ILLEGAL_FUNC_CALL "Invalid procedure call or argument"
|
|
VBSE_OVERFLOW "Overflow"
|
|
VBSE_OUT_OF_MEMORY "Out of memory"
|
|
VBSE_OUT_OF_BOUNDS "Subscript out of range"
|
|
VBSE_ARRAY_LOCKED "This array is fixed or temporarily locked"
|
|
VBSE_TYPE_MISMATCH "Type mismatch"
|
|
VBSE_FILE_NOT_FOUND "File not found"
|
|
VBSE_IO_ERROR "Device I/O error"
|
|
VBSE_FILE_ALREADY_EXISTS "File already exists"
|
|
VBSE_DISK_FULL "Disk full"
|
|
VBSE_TOO_MANY_FILES "Too many files"
|
|
VBSE_PERMISSION_DENIED "Permission denied"
|
|
VBSE_PATH_FILE_ACCESS "Path/File access error"
|
|
VBSE_PATH_NOT_FOUND "Path not found"
|
|
VBSE_OBJECT_VARIABLE_NOT_SET "Object variable not set"
|
|
VBSE_ILLEGAL_NULL_USE "Invalid use of Null"
|
|
VBSE_CANT_CREATE_TMP_FILE "Can't create necessary temporary file"
|
|
VBSE_CANT_CREATE_OBJECT "ActiveX component can't create object"
|
|
VBSE_OLE_NOT_SUPPORTED "Class doesn't support Automation"
|
|
VBSE_OLE_FILE_NOT_FOUND "File name or class name not found during Automation operation"
|
|
VBSE_OLE_NO_PROP_OR_METHOD "Object doesn't support this property or method"
|
|
VBSE_ACTION_NOT_SUPPORTED "Object doesn't support this action"
|
|
VBSE_NAMED_ARGS_NOT_SUPPORTED "Object doesn't support named arguments"
|
|
VBSE_LOCALE_SETTING_NOT_SUPPORTED "Object doesn't support current locale setting"
|
|
VBSE_NAMED_PARAM_NOT_FOUND "Named argument not found"
|
|
VBSE_PARAMETER_NOT_OPTIONAL "Named argument not found"
|
|
VBSE_FUNC_ARITY_MISMATCH "Wrong number of arguments or invalid property assignment"
|
|
VBSE_NOT_ENUM "Object not a collection"
|
|
VBSE_INVALID_DLL_FUNCTION_NAME "Specified DLL function not found"
|
|
VBSE_INVALID_TYPELIB_VARIABLE "Variable uses an Automation type not supported in VBScript"
|
|
VBSE_SERVER_NOT_FOUND "The remote server machine does not exist or is unavailable"
|
|
VBSE_UNQUALIFIED_REFERENCE "Invalid or unqualified reference"
|
|
|
|
VBS_COMPILE_ERROR "Microsoft VBScript compilation error"
|
|
VBS_RUNTIME_ERROR "Microsoft VBScript runtime error"
|
|
VBS_UNKNOWN_RUNTIME_ERROR "Unknown runtime error"
|
|
}
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
/* @makedep: vbscript.rgs */
|
|
2 WINE_REGISTRY vbscript.rgs
|
|
|
|
#define WINE_FILEDESCRIPTION_STR "Wine VBScript"
|
|
#define WINE_FILENAME_STR "vbscript.dll"
|
|
#define WINE_FILEVERSION 5,8,7601,16978
|
|
#define WINE_FILEVERSION_STR "5.8.7601.16978"
|
|
#define WINE_PRODUCTVERSION 5,8,0,16978
|
|
#define WINE_PRODUCTVERSION_STR "5.8.7601.16978"
|
|
|
|
#include "wine/wine_common_ver.rc"
|