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
5d7d188d
Commit
5d7d188d
authored
Dec 27, 2004
by
Robert Shearman
Committed by
Alexandre Julliard
Dec 27, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Move named pipe macros into rpc.c.
- Remove unneeded function.
parent
2b747d4e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
12 deletions
+3
-12
compobj_private.h
dlls/ole32/compobj_private.h
+0
-12
rpc.c
dlls/ole32/rpc.c
+3
-0
No files found.
dlls/ole32/compobj_private.h
View file @
5d7d188d
...
...
@@ -123,9 +123,6 @@ extern HRESULT create_marshalled_proxy(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
extern
void
*
StdGlobalInterfaceTableInstance
;
#define PIPEPREF "\\\\.\\pipe\\"
#define OLESTUBMGR PIPEPREF"WINE_OLE_StubMgr"
/* Standard Marshalling definitions */
typedef
struct
_wine_marshal_id
{
OXID
oxid
;
/* id of apartment */
...
...
@@ -142,15 +139,6 @@ MARSHAL_Compare_Mids(wine_marshal_id *mid1,wine_marshal_id *mid2) {
;
}
/* compare without interface compare */
inline
static
BOOL
MARSHAL_Compare_Mids_NoInterface
(
wine_marshal_id
*
mid1
,
wine_marshal_id
*
mid2
)
{
return
(
mid1
->
oxid
==
mid2
->
oxid
)
&&
(
mid1
->
oid
==
mid2
->
oid
)
;
}
HRESULT
MARSHAL_Disconnect_Proxies
(
void
);
HRESULT
MARSHAL_GetStandardMarshalCF
(
LPVOID
*
ppv
);
...
...
dlls/ole32/rpc.c
View file @
5d7d188d
...
...
@@ -47,6 +47,9 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
#define PIPEPREF "\\\\.\\pipe\\"
#define OLESTUBMGR PIPEPREF"WINE_OLE_StubMgr"
#define REQTYPE_REQUEST 0
typedef
struct
_wine_rpc_request_header
{
DWORD
reqid
;
...
...
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