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
f701435c
Commit
f701435c
authored
Jun 12, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Jun 12, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add IXMLHttpRequest interface and XMLHttpRequest coclass to xmldoc.idl.
parent
be35acf0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
63 additions
and
0 deletions
+63
-0
xmldom.idl
include/xmldom.idl
+63
-0
No files found.
include/xmldom.idl
View file @
f701435c
...
...
@@ -666,3 +666,66 @@ coclass DOMFreeThreadedDocument
[
default
]
interface
IXMLDOMDocument
;
[
default
,
source
]
dispinterface
XMLDOMDocumentEvents
;
}
[
object
,
uuid
(
ed8c108d
-
4349
-
11
d2
-
91
a4
-
00
c04f7969e8
),
odl
,
dual
,
oleautomation
,
pointer_default
(
unique
)
]
interface
IXMLHttpRequest
:
IDispatch
{
[
id
(
1
)
]
HRESULT
open
(
[
in
]
BSTR
bstrMethod
,
[
in
]
BSTR
bstrUrl
,
[
in
,
optional
]
VARIANT
varAsync
,
[
in
,
optional
]
VARIANT
varUser
,
[
in
,
optional
]
VARIANT
varPassword
)
;
[
id
(
2
)
]
HRESULT
setRequestHeader
(
[
in
]
BSTR
bstrHeader
,
[
in
]
BSTR
bstrValue
)
;
[
id
(
3
)
]
HRESULT
getResponseHeader
(
[
in
]
BSTR
bstrHeader
,
[
out
,
retval
]
BSTR
*
pbstrValue
)
;
[
id
(
4
)
]
HRESULT
getAllResponseHeaders
(
[
out
,
retval
]
BSTR
*
pbstrHeaders
)
;
[
id
(
5
)
]
HRESULT
send
(
[
in
,
optional
]
VARIANT
varBody
)
;
[
id
(
6
)
]
HRESULT
abort
()
;
[
propget
,
id
(
7
)
]
HRESULT
status
(
[
out
,
retval
]
long
*
plStatus
)
;
[
propget
,
id
(
8
)
]
HRESULT
statusText
(
[
out
,
retval
]
BSTR
*
bstrStatus
)
;
[
propget
,
id
(
9
)
]
HRESULT
responseXML
(
[
out
,
retval
]
IDispatch
**
ppBody
)
;
[
propget
,
id
(
10
)
]
HRESULT
responseText
(
[
out
,
retval
]
BSTR
*
pbstrBody
)
;
[
propget
,
id
(
11
)
]
HRESULT
responseBody
(
[
out
,
retval
]
VARIANT
*
pvarBody
)
;
[
propget
,
id
(
12
)
]
HRESULT
responseStream
(
[
out
,
retval
]
VARIANT
*
pvarBody
)
;
[
propget
,
id
(
13
)
]
HRESULT
readyState
(
[
out
,
retval
]
long
*
plState
)
;
[
propput
,
id
(
14
)
]
HRESULT
onreadystatechange
(
[
in
]
IDispatch
*
pReadyStateSink
)
;
}
;
[
uuid
(
ed8c108e
-
4349
-
11
d2
-
91
a4
-
00
c04f7969e8
)
]
coclass
XMLHTTPRequest
{
[
default
]
interface
IXMLHttpRequest
;
}
;
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