combase: Add CoDecodeProxy stub.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
448317dca6
commit
a2f6ddeedd
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue