Jacek Caban : urlmon: Added GetRootSecurityId and BeginningTransaction implementation.

Alexandre Julliard julliard at wine.codeweavers.com
Thu May 25 14:18:24 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 225333d79bf982b281fb6dc689ac6730ff62a54e
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=225333d79bf982b281fb6dc689ac6730ff62a54e

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Thu May 25 18:32:54 2006 +0200

urlmon: Added GetRootSecurityId and BeginningTransaction implementation.

---

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

diff --git a/dlls/urlmon/binding.c b/dlls/urlmon/binding.c
index efbd12f..f88d1c3 100644
--- a/dlls/urlmon/binding.c
+++ b/dlls/urlmon/binding.c
@@ -113,9 +113,11 @@ static ULONG WINAPI HttpNegotiate_Releas
 static HRESULT WINAPI HttpNegotiate_BeginningTransaction(IHttpNegotiate2 *iface,
         LPCWSTR szURL, LPCWSTR szHeaders, DWORD dwReserved, LPWSTR *pszAdditionalHeaders)
 {
-    FIXME("(%s %s %ld %p)\n", debugstr_w(szURL), debugstr_w(szHeaders), dwReserved,
+    TRACE("(%s %s %ld %p)\n", debugstr_w(szURL), debugstr_w(szHeaders), dwReserved,
           pszAdditionalHeaders);
-    return E_NOTIMPL;
+
+    *pszAdditionalHeaders = NULL;
+    return S_OK;
 }
 
 static HRESULT WINAPI HttpNegotiate_OnResponse(IHttpNegotiate2 *iface, DWORD dwResponseCode,
@@ -130,8 +132,10 @@ static HRESULT WINAPI HttpNegotiate_OnRe
 static HRESULT WINAPI HttpNegotiate_GetRootSecurityId(IHttpNegotiate2 *iface,
         BYTE *pbSecurityId, DWORD *pcbSecurityId, DWORD_PTR dwReserved)
 {
-    FIXME("(%p %p %ld)\n", pbSecurityId, pcbSecurityId, dwReserved);
-    return E_NOTIMPL;
+    TRACE("(%p %p %ld)\n", pbSecurityId, pcbSecurityId, dwReserved);
+
+    /* That's all we have to do here */
+    return E_FAIL;
 }
 
 static const IHttpNegotiate2Vtbl HttpNegotiate2Vtbl = {




More information about the wine-cvs mailing list