Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
225333d7
Commit
225333d7
authored
May 25, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
May 25, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Added GetRootSecurityId and BeginningTransaction implementation.
parent
c4f2bcf3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
binding.c
dlls/urlmon/binding.c
+8
-4
No files found.
dlls/urlmon/binding.c
View file @
225333d7
...
...
@@ -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
)
{
FIXM
E
(
"(%s %s %ld %p)
\n
"
,
debugstr_w
(
szURL
),
debugstr_w
(
szHeaders
),
dwReserved
,
TRAC
E
(
"(%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
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment