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
976dd6c0
Commit
976dd6c0
authored
Sep 19, 2005
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 19, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Added IHttpNegotiate2 interface.
- Update BINDSTRING and IInternetSession.
parent
c00ded58
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
3 deletions
+49
-3
session.c
dlls/urlmon/session.c
+1
-1
urlmon.idl
include/urlmon.idl
+48
-2
No files found.
dlls/urlmon/session.c
View file @
976dd6c0
...
...
@@ -92,7 +92,7 @@ static HRESULT WINAPI InternetSession_UnregisterMimeFilter(IInternetSession *ifa
static
HRESULT
WINAPI
InternetSession_CreateBinding
(
IInternetSession
*
iface
,
LPBC
pBC
,
LPCWSTR
szUrl
,
IUnknown
*
pUnkOuter
,
IUnknown
**
ppUnk
,
void
**
ppOInetProt
,
DWORD
dwOption
)
IInternetProtocol
**
ppOInetProt
,
DWORD
dwOption
)
{
FIXME
(
"(%p %s %p %p %p %08lx)
\n
"
,
pBC
,
debugstr_w
(
szUrl
),
pUnkOuter
,
ppUnk
,
ppOInetProt
,
dwOption
);
...
...
include/urlmon.idl
View file @
976dd6c0
...
...
@@ -293,6 +293,49 @@ interface IAuthenticate : IUnknown
}
/*****************************************************************************
*
IHttpNegotiate
interface
*/
[
object
,
uuid
(
79
EAC9D2
-
BAF9
-
11
CE
-
8
C82
-
00
AA004BA90B
),
pointer_default
(
unique
)
]
interface
IHttpNegotiate
:
IUnknown
{
typedef
[
unique
]
IHttpNegotiate
*
LPHTTPNEGOTIATE
;
HRESULT
BeginningTransaction
(
[
in
]
LPCWSTR
szURL
,
[
in
,
unique
]
LPCWSTR
szHeaders
,
[
in
]
DWORD
dwReserved
,
[
out
]
LPWSTR
*
pszAdditionalHeaders
)
;
HRESULT
OnResponse
(
[
in
]
DWORD
dwResponseCode
,
[
in
,
unique
]
LPCWSTR
szResponseHeaders
,
[
in
,
unique
]
LPCWSTR
szRequestHeaders
,
[
out
]
LPWSTR
*
pszAdditionalRequestHeaders
)
;
}
/*****************************************************************************
*
IHttpNegotiate2
interface
*/
[
object
,
uuid
(
4
F9F9FCB
-
E0F4
-
48
eb
-
B7AB
-
FA2EA9365CB4
),
pointer_default
(
unique
)
]
interface
IHttpNegotiate2
:
IHttpNegotiate
{
typedef
[
unique
]
IHttpNegotiate2
*
LPHTTPNEGOTIATE2
;
HRESULT
GetRootSecurityId
(
[
out
,
size_is
(
*
pcbSecurityId
)
]
BYTE
*
pbSecurityId
,
[
in
,
out
]
DWORD
*
pcbSecurityId
,
[
in
]
DWORD_PTR
dwReserved
)
;
}
/*****************************************************************************
*
IBindHost
interface
*/
cpp_quote
(
"#define SID_IBindHost IID_IBindHost"
)
...
...
@@ -490,7 +533,10 @@ interface IInternetBindInfo : IUnknown
BINDSTRING_ACCEPT_ENCODINGS
,
BINDSTRING_POST_COOKIE
,
BINDSTRING_POST_DATA_MIME
,
BINDSTRING_URL
BINDSTRING_URL
,
BINDSTRING_IID
,
BINDSTRING_FLAG_BIND_TO_OBJECT
,
BINDSTRING_PTR_BIND_CONTEXT
}
BINDSTRING
;
HRESULT
GetBindInfo
(
...
...
@@ -777,7 +823,7 @@ interface IInternetSession : IUnknown
[
in
]
LPCWSTR
szUrl
,
[
in
]
IUnknown
*
pUnkOuter
,
[
out
,
unique
]
IUnknown
**
ppUnk
,
[
out
,
unique
]
/*
IInternetProtocol
*/
void
**
ppOInetProt
,
[
out
,
unique
]
IInternetProtocol
**
ppOInetProt
,
[
in
]
DWORD
dwOption
)
;
HRESULT
SetSessionOption
(
...
...
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