urlmon: Added BindProtocol::[Un]LockRequest.
This commit is contained in:
parent
f189e7a060
commit
4883c8aba6
|
@ -253,15 +253,19 @@ static HRESULT WINAPI BindProtocol_Seek(IInternetProtocol *iface, LARGE_INTEGER
|
||||||
static HRESULT WINAPI BindProtocol_LockRequest(IInternetProtocol *iface, DWORD dwOptions)
|
static HRESULT WINAPI BindProtocol_LockRequest(IInternetProtocol *iface, DWORD dwOptions)
|
||||||
{
|
{
|
||||||
BindProtocol *This = PROTOCOL_THIS(iface);
|
BindProtocol *This = PROTOCOL_THIS(iface);
|
||||||
FIXME("(%p)->(%08x)\n", This, dwOptions);
|
|
||||||
return E_NOTIMPL;
|
TRACE("(%p)->(%08x)\n", This, dwOptions);
|
||||||
|
|
||||||
|
return IInternetProtocol_LockRequest(This->protocol, dwOptions);
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI BindProtocol_UnlockRequest(IInternetProtocol *iface)
|
static HRESULT WINAPI BindProtocol_UnlockRequest(IInternetProtocol *iface)
|
||||||
{
|
{
|
||||||
BindProtocol *This = PROTOCOL_THIS(iface);
|
BindProtocol *This = PROTOCOL_THIS(iface);
|
||||||
FIXME("(%p)\n", This);
|
|
||||||
return E_NOTIMPL;
|
TRACE("(%p)\n", This);
|
||||||
|
|
||||||
|
return IInternetProtocol_UnlockRequest(This->protocol);
|
||||||
}
|
}
|
||||||
|
|
||||||
#undef PROTOCOL_THIS
|
#undef PROTOCOL_THIS
|
||||||
|
|
Loading…
Reference in New Issue