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
e8be59b8
Commit
e8be59b8
authored
May 14, 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 Read and Write.
parent
374aacdc
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 @
e8be59b8
...
...
@@ -2297,8 +2297,15 @@ HRESULT CALLBACK ISequentialStream_Read_Proxy(
ULONG
cb
,
ULONG
*
pcbRead
)
{
FIXME
(
":stub
\n
"
);
return
E_NOTIMPL
;
ULONG
read
;
HRESULT
hr
;
TRACE
(
"(%p)->(%p, %d, %p)
\n
"
,
This
,
pv
,
cb
,
pcbRead
);
hr
=
ISequentialStream_RemoteRead_Proxy
(
This
,
pv
,
cb
,
&
read
);
if
(
pcbRead
)
*
pcbRead
=
read
;
return
hr
;
}
HRESULT
__RPC_STUB
ISequentialStream_Read_Stub
(
...
...
@@ -2307,8 +2314,8 @@ HRESULT __RPC_STUB ISequentialStream_Read_Stub(
ULONG
cb
,
ULONG
*
pcbRead
)
{
FIXME
(
":stub
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p, %d, %p)
\n
"
,
This
,
pv
,
cb
,
pcbRead
);
return
ISequentialStream_Read
(
This
,
pv
,
cb
,
pcbRead
)
;
}
HRESULT
CALLBACK
ISequentialStream_Write_Proxy
(
...
...
@@ -2317,8 +2324,15 @@ HRESULT CALLBACK ISequentialStream_Write_Proxy(
ULONG
cb
,
ULONG
*
pcbWritten
)
{
FIXME
(
":stub
\n
"
);
return
E_NOTIMPL
;
ULONG
written
;
HRESULT
hr
;
TRACE
(
"(%p)->(%p, %d, %p)
\n
"
,
This
,
pv
,
cb
,
pcbWritten
);
hr
=
ISequentialStream_RemoteWrite_Proxy
(
This
,
pv
,
cb
,
&
written
);
if
(
pcbWritten
)
*
pcbWritten
=
written
;
return
hr
;
}
HRESULT
__RPC_STUB
ISequentialStream_Write_Stub
(
...
...
@@ -2327,8 +2341,8 @@ HRESULT __RPC_STUB ISequentialStream_Write_Stub(
ULONG
cb
,
ULONG
*
pcbWritten
)
{
FIXME
(
":stub
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p, %d, %p)
\n
"
,
This
,
pv
,
cb
,
pcbWritten
);
return
ISequentialStream_Write
(
This
,
pv
,
cb
,
pcbWritten
)
;
}
HRESULT
CALLBACK
IStream_Seek_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