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
a2f6ddee
Commit
a2f6ddee
authored
Jul 28, 2021
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 29, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
combase: Add CoDecodeProxy stub.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
448317dc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
combase.spec
dlls/combase/combase.spec
+1
-1
rpc.c
dlls/combase/rpc.c
+9
-0
No files found.
dlls/combase/combase.spec
View file @
a2f6ddee
...
...
@@ -85,7 +85,7 @@
@ stdcall CoCreateInstanceFromApp(ptr ptr long ptr long ptr)
@ stub CoCreateObjectInContext
@ stub CoDeactivateObject
@ st
ub CoDecodeProxy
@ st
dcall CoDecodeProxy(long int64 ptr)
@ stdcall CoDecrementMTAUsage(ptr)
@ stdcall CoDisableCallCancellation(ptr)
@ stub CoDisconnectContext
...
...
dlls/combase/rpc.c
View file @
a2f6ddee
...
...
@@ -2109,3 +2109,12 @@ BOOL WINAPI DllDebugObjectRPCHook(BOOL trace, /* ORPC_INIT_ARGS * */ void *args)
return
TRUE
;
}
/******************************************************************************
* CoDecodeProxy (combase.@)
*/
HRESULT
WINAPI
CoDecodeProxy
(
DWORD
client_pid
,
UINT64
proxy_addr
,
ServerInformation
*
server_info
)
{
FIXME
(
"%x %s %p
\n
"
,
client_pid
,
wine_dbgstr_longlong
(
proxy_addr
),
server_info
);
return
E_NOTIMPL
;
}
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