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
95d040e9
Commit
95d040e9
authored
Sep 19, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 19, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vbscript: Added support for SCRIPTITEM_ISVISIBLE named items.
parent
347cf1d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
0 deletions
+25
-0
interp.c
dlls/vbscript/interp.c
+23
-0
lang.vbs
dlls/vbscript/tests/lang.vbs
+2
-0
No files found.
dlls/vbscript/interp.c
View file @
95d040e9
...
...
@@ -149,6 +149,29 @@ static HRESULT lookup_identifier(exec_ctx_t *ctx, BSTR name, vbdisp_invoke_type_
return
S_OK
;
}
}
if
((
item
->
flags
&
SCRIPTITEM_ISVISIBLE
)
&&
!
strcmpiW
(
item
->
name
,
name
))
{
if
(
!
item
->
disp
)
{
IUnknown
*
unk
;
hres
=
IActiveScriptSite_GetItemInfo
(
ctx
->
script
->
site
,
name
,
SCRIPTINFO_IUNKNOWN
,
&
unk
,
NULL
);
if
(
FAILED
(
hres
))
{
WARN
(
"GetItemInfo failed: %08x
\n
"
,
hres
);
continue
;
}
hres
=
IUnknown_QueryInterface
(
unk
,
&
IID_IDispatch
,
(
void
**
)
&
item
->
disp
);
IUnknown_Release
(
unk
);
if
(
FAILED
(
hres
))
{
WARN
(
"object does not implement IDispatch
\n
"
);
continue
;
}
}
ref
->
type
=
REF_OBJ
;
ref
->
u
.
obj
=
item
->
disp
;
return
S_OK
;
}
}
if
(
!
strcmpiW
(
name
,
errW
))
{
...
...
dlls/vbscript/tests/lang.vbs
View file @
95d040e9
...
...
@@ -620,4 +620,6 @@ Call ok(not (x is Nothing), "x is 1")
Call
ok
(
Nothing
is
Nothing
,
"Nothing is not Nothing"
)
Call
ok
(
x
is
obj
and
true
,
"x is obj and true is false"
)
Call
ok
(
getVT
(
test
)
=
"VT_DISPATCH"
,
"getVT(test) = "
&
getVT
(
test
))
reportSuccess
()
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