Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a390b7e8
Commit
a390b7e8
authored
Aug 22, 2019
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 22, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vbscript: Support arrays in VarType.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
139b0ef3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
global.c
dlls/vbscript/global.c
+5
-2
api.vbs
dlls/vbscript/tests/api.vbs
+5
-0
No files found.
dlls/vbscript/global.c
View file @
a390b7e8
...
...
@@ -627,16 +627,19 @@ static HRESULT Global_Oct(vbdisp_t *This, VARIANT *arg, unsigned args_cnt, VARIA
static
HRESULT
Global_VarType
(
vbdisp_t
*
This
,
VARIANT
*
arg
,
unsigned
args_cnt
,
VARIANT
*
res
)
{
VARTYPE
vt
;
TRACE
(
"(%s)
\n
"
,
debugstr_variant
(
arg
));
assert
(
args_cnt
==
1
);
if
(
V_VT
(
arg
)
&
~
VT_TYPEMASK
)
{
vt
=
V_VT
(
arg
)
&
~
VT_BYREF
;
if
(
vt
&
~
(
VT_TYPEMASK
|
VT_ARRAY
))
{
FIXME
(
"not supported %s
\n
"
,
debugstr_variant
(
arg
));
return
E_NOTIMPL
;
}
return
return_short
(
res
,
V_VT
(
arg
)
);
return
return_short
(
res
,
vt
);
}
static
HRESULT
Global_IsDate
(
vbdisp_t
*
This
,
VARIANT
*
arg
,
unsigned
args_cnt
,
VARIANT
*
res
)
...
...
dlls/vbscript/tests/api.vbs
View file @
a390b7e8
...
...
@@ -1096,6 +1096,9 @@ Call ok(VarType(Null) = vbNull, "VarType(Null) = " & VarType(Null))
Call
ok
(
getVT
(
VarType
(
Null
))
=
"VT_I2"
,
"getVT(VarType(Null)) = "
&
getVT
(
VarType
(
Null
)))
Call
ok
(
VarType
(
255
)
=
vbInteger
,
"VarType(255) = "
&
VarType
(
255
))
Call
ok
(
getVT
(
VarType
(
255
))
=
"VT_I2"
,
"getVT(VarType(255)) = "
&
getVT
(
VarType
(
255
)))
set
x
=
new
EmptyClass
Call
ok
(
VarType
(
x
)
=
vbObject
,
"VarType(x) = "
&
VarType
(
x
))
Call
ok
(
getVT
(
VarType
(
x
))
=
"VT_I2"
,
"getVT(VarType(x)) = "
&
getVT
(
VarType
(
x
)))
Call
ok
(
VarType
(
32768
)
=
vbLong
,
"VarType(32768) = "
&
VarType
(
32768
))
Call
ok
(
getVT
(
VarType
(
32768
))
=
"VT_I2"
,
"getVT(VarType(32768)) = "
&
getVT
(
VarType
(
32768
)))
Call
ok
(
VarType
(
CSng
(
0.5
))
=
vbSingle
,
"VarType(CSng(0.5)) = "
&
VarType
(
CSng
(
0.5
)))
...
...
@@ -1110,6 +1113,8 @@ Call ok(VarType(CBool(0.5)) = vbBoolean, "VarType(CBool(0.5)) = " & VarType(CBoo
Call
ok
(
getVT
(
VarType
(
CBool
(
0.5
)))
=
"VT_I2"
,
"getVT(VarType(CBool(0.5))) = "
&
getVT
(
VarType
(
CBool
(
0.5
))))
Call
ok
(
VarType
(
CByte
(
255
))
=
vbByte
,
"VarType(CByte(255)) = "
&
VarType
(
CByte
(
255
)))
Call
ok
(
getVT
(
VarType
(
CByte
(
255
)))
=
"VT_I2"
,
"getVT(VarType(CByte(255))) = "
&
getVT
(
VarType
(
CByte
(
255
))))
Call
ok
(
VarType
(
arr
)
=
(
vbArray
or
vbVariant
),
"VarType(arr) = "
&
VarType
(
arr
))
Call
ok
(
getVT
(
VarType
(
arr
))
=
"VT_I2"
,
"getVT(VarType(arr)) = "
&
getVT
(
VarType
(
arr
)))
Call
ok
(
Sgn
(
Empty
)
=
0
,
"Sgn(MyEmpty) = "
&
Sgn
(
Empty
))
Call
ok
(
getVT
(
Sgn
(
Empty
))
=
"VT_I2"
,
"getVT(Sgn(MyEmpty)) = "
&
getVT
(
Sgn
(
Empty
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment