Jacek Caban : urlmon: Added BindProtocol::[Un]LockRequest.

Alexandre Julliard julliard at winehq.org
Mon Dec 24 14:21:37 CST 2007


Module: wine
Branch: master
Commit: 4883c8aba620cbed1540ad80e610fabf4233593e
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4883c8aba620cbed1540ad80e610fabf4233593e

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Mon Dec 24 12:43:01 2007 +0100

urlmon: Added BindProtocol::[Un]LockRequest.

---

 dlls/urlmon/bindprot.c |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/dlls/urlmon/bindprot.c b/dlls/urlmon/bindprot.c
index 9185718..0eb7274 100644
--- a/dlls/urlmon/bindprot.c
+++ b/dlls/urlmon/bindprot.c
@@ -253,15 +253,19 @@ static HRESULT WINAPI BindProtocol_Seek(IInternetProtocol *iface, LARGE_INTEGER
 static HRESULT WINAPI BindProtocol_LockRequest(IInternetProtocol *iface, DWORD dwOptions)
 {
     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)
 {
     BindProtocol *This = PROTOCOL_THIS(iface);
-    FIXME("(%p)\n", This);
-    return E_NOTIMPL;
+
+    TRACE("(%p)\n", This);
+
+    return IInternetProtocol_UnlockRequest(This->protocol);
 }
 
 #undef PROTOCOL_THIS




More information about the wine-cvs mailing list