Commit 225333d7 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

urlmon: Added GetRootSecurityId and BeginningTransaction implementation.

parent c4f2bcf3
......@@ -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 = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment