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
15d7436a
Commit
15d7436a
authored
Mar 06, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 09, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Add all stubs to OLE marshalling stream.
parent
71d663f1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
8 deletions
+59
-8
ndr_ole.c
dlls/rpcrt4/ndr_ole.c
+59
-8
No files found.
dlls/rpcrt4/ndr_ole.c
View file @
15d7436a
...
...
@@ -19,7 +19,6 @@
*
* TODO:
* - fix the wire-protocol to match MS/RPC
* - finish RpcStream_Vtbl
*/
#include <stdarg.h>
...
...
@@ -194,6 +193,58 @@ static HRESULT WINAPI RpcStream_SetSize(LPSTREAM iface,
return
S_OK
;
}
static
HRESULT
WINAPI
RpcStream_CopyTo
(
IStream
*
iface
,
IStream
*
dest
,
ULARGE_INTEGER
len
,
ULARGE_INTEGER
*
read
,
ULARGE_INTEGER
*
written
)
{
RpcStreamImpl
*
This
=
impl_from_IStream
(
iface
);
FIXME
(
"(%p): stub
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
RpcStream_Commit
(
IStream
*
iface
,
DWORD
flags
)
{
RpcStreamImpl
*
This
=
impl_from_IStream
(
iface
);
FIXME
(
"(%p)->(0x%08x): stub
\n
"
,
This
,
flags
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
RpcStream_Revert
(
IStream
*
iface
)
{
RpcStreamImpl
*
This
=
impl_from_IStream
(
iface
);
FIXME
(
"(%p): stub
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
RpcStream_LockRegion
(
IStream
*
iface
,
ULARGE_INTEGER
offset
,
ULARGE_INTEGER
len
,
DWORD
locktype
)
{
RpcStreamImpl
*
This
=
impl_from_IStream
(
iface
);
FIXME
(
"(%p): stub
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
RpcStream_UnlockRegion
(
IStream
*
iface
,
ULARGE_INTEGER
offset
,
ULARGE_INTEGER
len
,
DWORD
locktype
)
{
RpcStreamImpl
*
This
=
impl_from_IStream
(
iface
);
FIXME
(
"(%p): stub
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
RpcStream_Stat
(
IStream
*
iface
,
STATSTG
*
stat
,
DWORD
flag
)
{
RpcStreamImpl
*
This
=
impl_from_IStream
(
iface
);
FIXME
(
"(%p): stub
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
RpcStream_Clone
(
IStream
*
iface
,
IStream
**
cloned
)
{
RpcStreamImpl
*
This
=
impl_from_IStream
(
iface
);
FIXME
(
"(%p): stub
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
const
IStreamVtbl
RpcStream_Vtbl
=
{
RpcStream_QueryInterface
,
...
...
@@ -203,13 +254,13 @@ static const IStreamVtbl RpcStream_Vtbl =
RpcStream_Write
,
RpcStream_Seek
,
RpcStream_SetSize
,
NULL
,
/* CopyTo */
NULL
,
/* Commit */
NULL
,
/* Revert */
NULL
,
/* LockRegion */
NULL
,
/* UnlockRegion */
NULL
,
/* Stat */
NULL
/* Clone */
RpcStream_CopyTo
,
RpcStream_Commit
,
RpcStream_Revert
,
RpcStream_LockRegion
,
RpcStream_UnlockRegion
,
RpcStream_Stat
,
RpcStream_Clone
};
static
HRESULT
RpcStream_Create
(
PMIDL_STUB_MESSAGE
pStubMsg
,
BOOL
init
,
ULONG
*
size
,
IStream
**
stream
)
...
...
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