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
a765b1ec
Commit
a765b1ec
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: Added interp_incc implementation.
parent
d55aa556
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
2 deletions
+22
-2
interp.c
dlls/vbscript/interp.c
+22
-2
No files found.
dlls/vbscript/interp.c
View file @
a765b1ec
...
...
@@ -1518,8 +1518,28 @@ static HRESULT interp_neg(exec_ctx_t *ctx)
static
HRESULT
interp_incc
(
exec_ctx_t
*
ctx
)
{
const
BSTR
ident
=
ctx
->
instr
->
arg1
.
bstr
;
FIXME
(
"%s
\n
"
,
debugstr_w
(
ident
));
return
E_NOTIMPL
;
VARIANT
v
;
ref_t
ref
;
HRESULT
hres
;
TRACE
(
"
\n
"
);
hres
=
lookup_identifier
(
ctx
,
ident
,
VBDISP_LET
,
&
ref
);
if
(
FAILED
(
hres
))
return
hres
;
if
(
ref
.
type
!=
REF_VAR
)
{
FIXME
(
"ref.type is not REF_VAR
\n
"
);
return
E_FAIL
;
}
hres
=
VarAdd
(
stack_top
(
ctx
,
0
),
ref
.
u
.
v
,
&
v
);
if
(
FAILED
(
hres
))
return
hres
;
VariantClear
(
ref
.
u
.
v
);
*
ref
.
u
.
v
=
v
;
return
S_OK
;
}
static
const
instr_func_t
op_funcs
[]
=
{
...
...
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