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
f1b44b36
Commit
f1b44b36
authored
Jun 04, 2007
by
Alex Villacís Lasso
Committed by
Alexandre Julliard
Jun 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Support for VT_DISPATCH in VarInt.
parent
bd7de427
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
variant.c
dlls/oleaut32/variant.c
+13
-1
No files found.
dlls/oleaut32/variant.c
View file @
f1b44b36
...
...
@@ -4484,10 +4484,20 @@ VarFix_Exit:
HRESULT
WINAPI
VarInt
(
LPVARIANT
pVarIn
,
LPVARIANT
pVarOut
)
{
HRESULT
hRet
=
S_OK
;
VARIANT
temp
;
VariantInit
(
&
temp
);
TRACE
(
"(%p->(%s%s),%p)
\n
"
,
pVarIn
,
debugstr_VT
(
pVarIn
),
debugstr_VF
(
pVarIn
),
pVarOut
);
/* Handle VT_DISPATCH by storing and taking address of returned value */
if
((
V_VT
(
pVarIn
)
&
VT_TYPEMASK
)
==
VT_DISPATCH
&&
((
V_VT
(
pVarIn
)
&
~
VT_TYPEMASK
)
==
0
))
{
hRet
=
VARIANT_FetchDispatchValue
(
pVarIn
,
&
temp
);
if
(
FAILED
(
hRet
))
goto
VarInt_Exit
;
pVarIn
=
&
temp
;
}
V_VT
(
pVarOut
)
=
V_VT
(
pVarIn
);
switch
(
V_VT
(
pVarIn
))
...
...
@@ -4511,8 +4521,10 @@ HRESULT WINAPI VarInt(LPVARIANT pVarIn, LPVARIANT pVarOut)
hRet
=
VarDecInt
(
&
V_DECIMAL
(
pVarIn
),
&
V_DECIMAL
(
pVarOut
));
break
;
default:
return
VarFix
(
pVarIn
,
pVarOut
);
hRet
=
VarFix
(
pVarIn
,
pVarOut
);
}
VarInt_Exit:
VariantClear
(
&
temp
);
return
hRet
;
}
...
...
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