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
db6db7cb
Commit
db6db7cb
authored
Feb 15, 2005
by
Robert Shearman
Committed by
Alexandre Julliard
Feb 15, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make COM use the RPC runtime as the backend for RPC calls. Based on a
patch by Ove Kåven.
parent
a9a1d610
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
5 deletions
+10
-5
compobj.c
dlls/ole32/compobj.c
+0
-2
compobj_private.h
dlls/ole32/compobj_private.h
+4
-2
marshal.c
dlls/ole32/marshal.c
+3
-0
rpc.c
dlls/ole32/rpc.c
+0
-0
stubmanager.c
dlls/ole32/stubmanager.c
+3
-1
No files found.
dlls/ole32/compobj.c
View file @
db6db7cb
...
...
@@ -32,8 +32,6 @@
* of registered class objects: ISCM::ServerRegisterClsid et al
* - Implement the OXID resolver so we don't need magic pipe names for
* clients and servers to meet up
* - Flip our marshalling on top of the RPC runtime transport API,
* so we no longer use named pipes to communicate
*
* - Make all ole interface marshaling use NDR to be wire compatible with
* native DCOM
...
...
dlls/ole32/compobj_private.h
View file @
db6db7cb
...
...
@@ -197,9 +197,11 @@ IRpcStubBuffer *mid_to_stubbuffer(wine_marshal_id *mid);
void
start_apartment_listener_thread
(
void
);
extern
HRESULT
PIPE_GetNewPipeBuf
(
wine_marshal_id
*
mid
,
IRpcChannelBuffer
**
pipebuf
);
void
RPC_StartLocalServer
(
REFCLSID
clsid
,
IStream
*
stream
);
HRESULT
PIPE_GetNewPipeBuf
(
wine_marshal_id
*
mid
,
IRpcChannelBuffer
**
pipebuf
);
HRESULT
RPC_ExecuteCall
(
RPCOLEMESSAGE
*
msg
,
IRpcStubBuffer
*
stub
);
HRESULT
RPC_RegisterInterface
(
REFIID
riid
);
void
RPC_UnregisterInterface
(
REFIID
riid
);
void
RPC_StartLocalServer
(
REFCLSID
clsid
,
IStream
*
stream
);
/* This function initialize the Running Object Table */
HRESULT
WINAPI
RunningObjectTableImpl_Initialize
(
void
);
...
...
dlls/ole32/marshal.c
View file @
db6db7cb
...
...
@@ -153,6 +153,9 @@ HRESULT register_ifstub(APARTMENT *apt, STDOBJREF *stdobjref, REFIID riid, IUnkn
stub_manager_ext_addref
(
manager
,
1
);
}
/* FIXME: check return value */
RPC_RegisterInterface
(
riid
);
stdobjref
->
ipid
=
ifstub
->
ipid
;
stub_manager_int_release
(
manager
);
...
...
dlls/ole32/rpc.c
View file @
db6db7cb
This diff is collapsed.
Click to expand it.
dlls/ole32/stubmanager.c
View file @
db6db7cb
...
...
@@ -418,8 +418,10 @@ struct ifstub *stub_manager_new_ifstub(struct stub_manager *m, IRpcStubBuffer *s
static
void
stub_manager_delete_ifstub
(
struct
stub_manager
*
m
,
struct
ifstub
*
ifstub
)
{
TRACE
(
"m=%p, m->oid=%s, ipid=%s
\n
"
,
m
,
wine_dbgstr_longlong
(
m
->
oid
),
debugstr_guid
(
&
ifstub
->
ipid
));
list_remove
(
&
ifstub
->
entry
);
RPC_UnregisterInterface
(
&
ifstub
->
iid
);
IUnknown_Release
(
ifstub
->
stubbuffer
);
IUnknown_Release
(
ifstub
->
iface
);
...
...
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