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
bbf48355
Commit
bbf48355
authored
Jan 29, 2009
by
Aric Stewart
Committed by
Alexandre Julliard
Jan 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Implement de/serialize_param of types VT_ARRAY|<type>.
parent
70131341
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
tmarshal.c
dlls/oleaut32/tmarshal.c
+12
-2
No files found.
dlls/oleaut32/tmarshal.c
View file @
bbf48355
...
...
@@ -606,10 +606,15 @@ serialize_param(
marshal_state
*
buf
)
{
HRESULT
hres
=
S_OK
;
VARTYPE
vartype
;
TRACE
(
"(tdesc.vt %s)
\n
"
,
debugstr_vt
(
tdesc
->
vt
));
switch
(
tdesc
->
vt
)
{
vartype
=
tdesc
->
vt
;
if
((
vartype
&
0xf000
)
==
VT_ARRAY
)
vartype
=
VT_SAFEARRAY
;
switch
(
vartype
)
{
case
VT_EMPTY
:
/* nothing. empty variant for instance */
return
S_OK
;
case
VT_I8
:
...
...
@@ -919,11 +924,16 @@ deserialize_param(
marshal_state
*
buf
)
{
HRESULT
hres
=
S_OK
;
VARTYPE
vartype
;
TRACE
(
"vt %s at %p
\n
"
,
debugstr_vt
(
tdesc
->
vt
),
arg
);
vartype
=
tdesc
->
vt
;
if
((
vartype
&
0xf000
)
==
VT_ARRAY
)
vartype
=
VT_SAFEARRAY
;
while
(
1
)
{
switch
(
tdesc
->
vt
)
{
switch
(
vartype
)
{
case
VT_EMPTY
:
if
(
debugout
)
TRACE_
(
olerelay
)(
"<empty>
\n
"
);
return
S_OK
;
...
...
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