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
6ca3cb62
Commit
6ca3cb62
authored
Sep 09, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 09, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vbscript: Added interp_not implementation.
parent
7f9464ce
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
2 deletions
+54
-2
interp.c
dlls/vbscript/interp.c
+51
-2
lang.vbs
dlls/vbscript/tests/lang.vbs
+3
-0
No files found.
dlls/vbscript/interp.c
View file @
6ca3cb62
...
...
@@ -53,6 +53,12 @@ typedef struct {
}
u
;
}
ref_t
;
typedef
struct
{
VARIANT
*
v
;
VARIANT
store
;
BOOL
owned
;
}
variant_val_t
;
static
HRESULT
lookup_identifier
(
exec_ctx_t
*
ctx
,
BSTR
name
,
ref_t
*
ref
)
{
named_item_t
*
item
;
...
...
@@ -109,6 +115,35 @@ static void stack_popn(exec_ctx_t *ctx, unsigned n)
VariantClear
(
stack_pop
(
ctx
));
}
static
HRESULT
stack_pop_val
(
exec_ctx_t
*
ctx
,
variant_val_t
*
v
)
{
VARIANT
*
var
;
var
=
stack_pop
(
ctx
);
if
(
V_VT
(
var
)
==
(
VT_BYREF
|
VT_VARIANT
))
{
v
->
owned
=
FALSE
;
var
=
V_VARIANTREF
(
var
);
}
else
{
v
->
owned
=
TRUE
;
}
if
(
V_VT
(
var
)
==
VT_DISPATCH
)
{
FIXME
(
"got dispatch - get its default value
\n
"
);
return
E_NOTIMPL
;
}
else
{
v
->
v
=
var
;
}
return
S_OK
;
}
static
inline
void
release_val
(
variant_val_t
*
v
)
{
if
(
v
->
owned
)
VariantClear
(
v
->
v
);
}
static
void
vbstack_to_dp
(
exec_ctx_t
*
ctx
,
unsigned
arg_cnt
,
DISPPARAMS
*
dp
)
{
dp
->
cArgs
=
arg_cnt
;
...
...
@@ -200,8 +235,22 @@ static HRESULT interp_string(exec_ctx_t *ctx)
static
HRESULT
interp_not
(
exec_ctx_t
*
ctx
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
variant_val_t
val
;
VARIANT
v
;
HRESULT
hres
;
TRACE
(
"
\n
"
);
hres
=
stack_pop_val
(
ctx
,
&
val
);
if
(
FAILED
(
hres
))
return
hres
;
hres
=
VarNot
(
val
.
v
,
&
v
);
release_val
(
&
val
);
if
(
FAILED
(
hres
))
return
hres
;
return
stack_push
(
ctx
,
&
v
);
}
static
const
instr_func_t
op_funcs
[]
=
{
...
...
dlls/vbscript/tests/lang.vbs
View file @
6ca3cb62
...
...
@@ -22,4 +22,7 @@ call ok(true, "true is not true?")
ok
true
,
"true is not true?"
call
ok
((
true
),
"true is not true?"
)
ok
not
false
,
"not false but not true?"
ok
not
not
true
,
"not not true but not true?"
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