Module: wine Branch: master Commit: a2f6ddeedd868f403d7746098092aae8e423d9b8 URL: https://source.winehq.org/git/wine.git/?a=commit;h=a2f6ddeedd868f403d7746098...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Jul 28 20:27:25 2021 +0200
combase: Add CoDecodeProxy stub.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/combase/combase.spec | 2 +- dlls/combase/rpc.c | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/dlls/combase/combase.spec b/dlls/combase/combase.spec index 0437714edcc..7343da6a0ef 100644 --- a/dlls/combase/combase.spec +++ b/dlls/combase/combase.spec @@ -85,7 +85,7 @@ @ stdcall CoCreateInstanceFromApp(ptr ptr long ptr long ptr) @ stub CoCreateObjectInContext @ stub CoDeactivateObject -@ stub CoDecodeProxy +@ stdcall CoDecodeProxy(long int64 ptr) @ stdcall CoDecrementMTAUsage(ptr) @ stdcall CoDisableCallCancellation(ptr) @ stub CoDisconnectContext diff --git a/dlls/combase/rpc.c b/dlls/combase/rpc.c index 55450ad7f14..7337498e9fa 100644 --- a/dlls/combase/rpc.c +++ b/dlls/combase/rpc.c @@ -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; +}