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
00de502b
Commit
00de502b
authored
Sep 22, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 22, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vbscript: Better stub for interp_errmode.
parent
f48658c1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
interp.c
dlls/vbscript/interp.c
+11
-3
No files found.
dlls/vbscript/interp.c
View file @
00de502b
...
...
@@ -37,6 +37,8 @@ typedef struct {
dynamic_var_t
*
dynamic_vars
;
vbsheap_t
heap
;
BOOL
resume_next
;
unsigned
stack_size
;
unsigned
top
;
VARIANT
*
stack
;
...
...
@@ -891,8 +893,11 @@ static HRESULT interp_bool(exec_ctx_t *ctx)
static
HRESULT
interp_errmode
(
exec_ctx_t
*
ctx
)
{
const
int
err_mode
=
ctx
->
instr
->
arg1
.
uint
;
FIXME
(
"%d
\n
"
,
err_mode
);
return
E_NOTIMPL
;
TRACE
(
"%d
\n
"
,
err_mode
);
ctx
->
resume_next
=
err_mode
;
return
S_OK
;
}
static
HRESULT
interp_string
(
exec_ctx_t
*
ctx
)
...
...
@@ -1659,7 +1664,10 @@ HRESULT exec_script(script_ctx_t *ctx, function_t *func, IDispatch *this_obj, DI
op
=
exec
.
instr
->
op
;
hres
=
op_funcs
[
op
](
&
exec
);
if
(
FAILED
(
hres
))
{
FIXME
(
"Failed %08x
\n
"
,
hres
);
if
(
exec
.
resume_next
)
FIXME
(
"Failed %08x in resume next mode
\n
"
,
hres
);
else
WARN
(
"Failed %08x
\n
"
,
hres
);
stack_popn
(
&
exec
,
exec
.
top
);
break
;
}
...
...
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