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
308b2641
Commit
308b2641
authored
Sep 15, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vbscript: Added interp_mcall implementation.
parent
6ee2e3ac
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
interp.c
dlls/vbscript/interp.c
+3
-2
lang.vbs
dlls/vbscript/tests/lang.vbs
+4
-0
No files found.
dlls/vbscript/interp.c
View file @
308b2641
...
...
@@ -374,8 +374,9 @@ static HRESULT interp_mcall(exec_ctx_t *ctx)
static
HRESULT
interp_mcallv
(
exec_ctx_t
*
ctx
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"
\n
"
);
return
do_mcall
(
ctx
,
NULL
);
}
static
HRESULT
assign_ident
(
exec_ctx_t
*
ctx
,
BSTR
name
,
VARIANT
*
val
,
BOOL
own_val
)
...
...
dlls/vbscript/tests/lang.vbs
View file @
308b2641
...
...
@@ -405,4 +405,8 @@ Set obj = New TestClass
Call
ok
(
obj
.
publicFunction
=
4
,
"obj.publicFunction = "
&
obj
.
publicFunction
)
Call
ok
(
obj
.
publicFunction
()
=
4
,
"obj.publicFunction() = "
&
obj
.
publicFunction
())
obj
.
publicSub
()
Call
obj
.
publicSub
Call
obj
.
publicFunction
()
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