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
5f9e3ffd
Commit
5f9e3ffd
authored
Dec 12, 2002
by
Marcus Meissner
Committed by
Alexandre Julliard
Dec 12, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Serialize/deserialize all reftypes in VT_USERDEFINED.
parent
21d92f8c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
6 deletions
+34
-6
tmarshal.c
dlls/oleaut32/tmarshal.c
+34
-6
No files found.
dlls/oleaut32/tmarshal.c
View file @
5f9e3ffd
...
...
@@ -556,11 +556,25 @@ serialize_param(
if
(
debugout
)
MESSAGE
(
"}"
);
break
;
}
default:
FIXME
(
"Don't know how to marshal type kind %d
\n
"
,
tattr
->
typekind
);
hres
=
E_FAIL
;
default:
{
TYPEDESC
tdesc2
;
if
(
debugout
)
MESSAGE
(
"U{"
);
memset
(
&
tdesc2
,
0
,
sizeof
(
tdesc2
));
tdesc2
.
vt
=
tattr
->
typekind
;
hres
=
serialize_param
(
tinfo2
,
writeit
,
debugout
,
dealloc
,
&
tdesc2
,
arg
,
buf
);
if
(
debugout
)
MESSAGE
(
"}"
);
break
;
}
}
ITypeInfo_Release
(
tinfo2
);
return
hres
;
}
...
...
@@ -896,11 +910,25 @@ deserialize_param(
if
(
debugout
)
MESSAGE
(
"}"
);
break
;
}
default:
FIXME
(
"Don't know how to marshal type kind %d
\n
"
,
tattr
->
typekind
);
hres
=
E_FAIL
;
default:
{
TYPEDESC
tdesc2
;
if
(
debugout
)
MESSAGE
(
"U{"
);
memset
(
&
tdesc2
,
0
,
sizeof
(
tdesc2
));
tdesc2
.
vt
=
tattr
->
typekind
;
hres
=
deserialize_param
(
tinfo2
,
readit
,
debugout
,
alloc
,
&
tdesc2
,
(
DWORD
*
)
*
arg
,
buf
);
if
(
debugout
)
MESSAGE
(
"}"
);
break
;
}
}
}
if
(
hres
)
FIXME
(
"failed to stuballoc in TKIND_RECORD.
\n
"
);
...
...
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