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
42c39675
Commit
42c39675
authored
Jun 09, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Jun 09, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Implement FTMarshalImpl_GetMarshalSizeMax.
parent
b4629add
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
ftmarshal.c
dlls/ole32/ftmarshal.c
+4
-5
No files found.
dlls/ole32/ftmarshal.c
View file @
42c39675
...
...
@@ -155,15 +155,14 @@ FTMarshalImpl_GetMarshalSizeMax (LPMARSHAL iface, REFIID riid, void *pv, DWORD d
IMarshal
*
pMarshal
=
NULL
;
HRESULT
hres
;
FTMarshalImpl
*
This
=
impl_from_IMarshal
(
iface
);
FIXME
(
"(), stub!
\n
"
);
TRACE
(
"(%s, %p, 0x%lx, %p, 0x%lx, %p)
\n
"
,
debugstr_guid
(
riid
),
pv
,
dwDestContext
,
pvDestContext
,
mshlflags
,
pSize
);
/* if the marshalling happens inside the same process the interface pointer is
copied between the apartments */
if
(
dwDestContext
==
MSHCTX_INPROC
||
dwDestContext
==
MSHCTX_CROSSCTX
)
{
*
pSize
=
sizeof
(
This
);
return
S_OK
;
*
pSize
=
sizeof
(
mshlflags
)
+
sizeof
(
pv
)
+
sizeof
(
DWORD
)
+
sizeof
(
GUID
);
return
S_OK
;
}
/* use the standard marshaller to handle all other cases */
...
...
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