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
e4d43c10
Commit
e4d43c10
authored
May 15, 2009
by
Huw Davies
Committed by
Alexandre Julliard
May 18, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Add proxies and stubs for FillAppend and FillAt.
parent
069d5750
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
8 deletions
+22
-8
usrmarshal.c
dlls/ole32/usrmarshal.c
+22
-8
No files found.
dlls/ole32/usrmarshal.c
View file @
e4d43c10
...
@@ -2549,8 +2549,15 @@ HRESULT CALLBACK IFillLockBytes_FillAppend_Proxy(
...
@@ -2549,8 +2549,15 @@ HRESULT CALLBACK IFillLockBytes_FillAppend_Proxy(
ULONG
cb
,
ULONG
cb
,
ULONG
*
pcbWritten
)
ULONG
*
pcbWritten
)
{
{
FIXME
(
":stub
\n
"
);
ULONG
written
;
return
E_NOTIMPL
;
HRESULT
hr
;
TRACE
(
"(%p)->(%p, %d, %p)
\n
"
,
This
,
pv
,
cb
,
pcbWritten
);
hr
=
IFillLockBytes_RemoteFillAppend_Proxy
(
This
,
pv
,
cb
,
&
written
);
if
(
pcbWritten
)
*
pcbWritten
=
written
;
return
hr
;
}
}
HRESULT
__RPC_STUB
IFillLockBytes_FillAppend_Stub
(
HRESULT
__RPC_STUB
IFillLockBytes_FillAppend_Stub
(
...
@@ -2559,8 +2566,8 @@ HRESULT __RPC_STUB IFillLockBytes_FillAppend_Stub(
...
@@ -2559,8 +2566,8 @@ HRESULT __RPC_STUB IFillLockBytes_FillAppend_Stub(
ULONG
cb
,
ULONG
cb
,
ULONG
*
pcbWritten
)
ULONG
*
pcbWritten
)
{
{
FIXME
(
":stub
\n
"
);
TRACE
(
"(%p)->(%p, %d, %p)
\n
"
,
This
,
pv
,
cb
,
pcbWritten
);
return
E_NOTIMPL
;
return
IFillLockBytes_FillAppend
(
This
,
pv
,
cb
,
pcbWritten
)
;
}
}
HRESULT
CALLBACK
IFillLockBytes_FillAt_Proxy
(
HRESULT
CALLBACK
IFillLockBytes_FillAt_Proxy
(
...
@@ -2570,8 +2577,15 @@ HRESULT CALLBACK IFillLockBytes_FillAt_Proxy(
...
@@ -2570,8 +2577,15 @@ HRESULT CALLBACK IFillLockBytes_FillAt_Proxy(
ULONG
cb
,
ULONG
cb
,
ULONG
*
pcbWritten
)
ULONG
*
pcbWritten
)
{
{
FIXME
(
":stub
\n
"
);
ULONG
written
;
return
E_NOTIMPL
;
HRESULT
hr
;
TRACE
(
"(%p)->(%s, %p, %d, %p)
\n
"
,
This
,
wine_dbgstr_longlong
(
ulOffset
.
QuadPart
),
pv
,
cb
,
pcbWritten
);
hr
=
IFillLockBytes_RemoteFillAt_Proxy
(
This
,
ulOffset
,
pv
,
cb
,
&
written
);
if
(
pcbWritten
)
*
pcbWritten
=
written
;
return
hr
;
}
}
HRESULT
__RPC_STUB
IFillLockBytes_FillAt_Stub
(
HRESULT
__RPC_STUB
IFillLockBytes_FillAt_Stub
(
...
@@ -2581,8 +2595,8 @@ HRESULT __RPC_STUB IFillLockBytes_FillAt_Stub(
...
@@ -2581,8 +2595,8 @@ HRESULT __RPC_STUB IFillLockBytes_FillAt_Stub(
ULONG
cb
,
ULONG
cb
,
ULONG
*
pcbWritten
)
ULONG
*
pcbWritten
)
{
{
FIXME
(
":stub
\n
"
);
TRACE
(
"(%p)->(%s, %p, %d, %p)
\n
"
,
This
,
wine_dbgstr_longlong
(
ulOffset
.
QuadPart
),
pv
,
cb
,
pcbWritten
);
return
E_NOTIMPL
;
return
IFillLockBytes_FillAt
(
This
,
ulOffset
,
pv
,
cb
,
pcbWritten
)
;
}
}
HRESULT
CALLBACK
IEnumFORMATETC_Next_Proxy
(
HRESULT
CALLBACK
IEnumFORMATETC_Next_Proxy
(
...
...
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