From 225333d79bf982b281fb6dc689ac6730ff62a54e Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Thu, 25 May 2006 18:32:54 +0200 Subject: [PATCH] urlmon: Added GetRootSecurityId and BeginningTransaction implementation. --- dlls/urlmon/binding.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/dlls/urlmon/binding.c b/dlls/urlmon/binding.c index efbd12fdf3b..f88d1c3a93a 100644 --- a/dlls/urlmon/binding.c +++ b/dlls/urlmon/binding.c @@ -113,9 +113,11 @@ static ULONG WINAPI HttpNegotiate_Release(IHttpNegotiate2 *iface) 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_OnResponse(IHttpNegotiate2 *iface, DWORD dwR 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 = {