ole32: Partially implement ServerRpcChannelBuffer_GetDestCtx.
This commit is contained in:
parent
4278c3fe84
commit
fcccd9fca6
|
@ -1026,8 +1026,13 @@ static HRESULT WINAPI ClientRpcChannelBuffer_GetDestCtx(LPRPCCHANNELBUFFER iface
|
||||||
|
|
||||||
static HRESULT WINAPI ServerRpcChannelBuffer_GetDestCtx(LPRPCCHANNELBUFFER iface, DWORD* pdwDestContext, void** ppvDestContext)
|
static HRESULT WINAPI ServerRpcChannelBuffer_GetDestCtx(LPRPCCHANNELBUFFER iface, DWORD* pdwDestContext, void** ppvDestContext)
|
||||||
{
|
{
|
||||||
FIXME("(%p,%p), stub!\n", pdwDestContext, ppvDestContext);
|
WARN("(%p,%p), stub!\n", pdwDestContext, ppvDestContext);
|
||||||
return E_FAIL;
|
|
||||||
|
/* FIXME: implement this by storing the dwDestContext and pvDestContext
|
||||||
|
* values passed into IMarshal_MarshalInterface and returning them here */
|
||||||
|
*pdwDestContext = MSHCTX_DIFFERENTMACHINE;
|
||||||
|
*ppvDestContext = NULL;
|
||||||
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI RpcChannelBuffer_IsConnected(LPRPCCHANNELBUFFER iface)
|
static HRESULT WINAPI RpcChannelBuffer_IsConnected(LPRPCCHANNELBUFFER iface)
|
||||||
|
|
Loading…
Reference in New Issue