Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
8689884c
Commit
8689884c
authored
Sep 13, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 13, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vbscript: Added interp_jmp implementation.
parent
58bd62e7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
interp.c
dlls/vbscript/interp.c
+11
-2
No files found.
dlls/vbscript/interp.c
View file @
8689884c
...
...
@@ -191,6 +191,11 @@ static HRESULT stack_pop_disp(exec_ctx_t *ctx, IDispatch **ret)
return
S_OK
;
}
static
inline
void
instr_jmp
(
exec_ctx_t
*
ctx
,
unsigned
addr
)
{
ctx
->
instr
=
ctx
->
code
->
instrs
+
addr
;
}
static
void
vbstack_to_dp
(
exec_ctx_t
*
ctx
,
unsigned
arg_cnt
,
DISPPARAMS
*
dp
)
{
dp
->
cArgs
=
arg_cnt
;
...
...
@@ -369,8 +374,12 @@ static HRESULT interp_assign_member(exec_ctx_t *ctx)
static
HRESULT
interp_jmp
(
exec_ctx_t
*
ctx
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
const
unsigned
arg
=
ctx
->
instr
->
arg1
.
uint
;
TRACE
(
"%u
\n
"
,
arg
);
instr_jmp
(
ctx
,
arg
);
return
S_OK
;
}
static
HRESULT
interp_jmp_false
(
exec_ctx_t
*
ctx
)
...
...
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