Commit a2f6ddee authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

combase: Add CoDecodeProxy stub.

parent 448317dc
......@@ -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
......
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment