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
abdec32f
Commit
abdec32f
authored
Apr 13, 2017
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml.idl: Added HTMLXMLHttpRequest coclass declaration.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f40b5448
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
8 deletions
+23
-8
xmlhttprequest.c
dlls/mshtml/xmlhttprequest.c
+6
-8
mshtml.idl
include/mshtml.idl
+17
-0
No files found.
dlls/mshtml/xmlhttprequest.c
View file @
abdec32f
...
...
@@ -92,20 +92,18 @@ static HRESULT return_nscstr(nsresult nsres, nsACString *nscstr, BSTR *p)
return
S_OK
;
}
typedef
struct
XMLHttpReqEventListener
XMLHttpReqEventListener
;
typedef
struct
{
nsIDOMEventListener
nsIDOMEventListener_iface
;
LONG
ref
;
HTMLXMLHttpRequest
*
xhr
;
}
XMLHttpReqEventListener
;
struct
HTMLXMLHttpRequest
{
EventTarget
event_target
;
IHTMLXMLHttpRequest
IHTMLXMLHttpRequest_iface
;
LONG
ref
;
nsIXMLHttpRequest
*
nsxhr
;
XMLHttpReqEventListener
*
event_listener
;
}
HTMLXMLHttpRequest
;
struct
XMLHttpReqEventListener
{
nsIDOMEventListener
nsIDOMEventListener_iface
;
LONG
ref
;
HTMLXMLHttpRequest
*
xhr
;
};
static
void
detach_xhr_event_listener
(
XMLHttpReqEventListener
*
event_listener
)
...
...
include/mshtml.idl
View file @
abdec32f
...
...
@@ -9134,6 +9134,23 @@ methods:
}
/*****************************************************************************
*
HTMLXMLHttpRequest
*/
[
noncreatable
,
uuid
(
3051040b
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
coclass
HTMLXMLHttpRequest
{
[
default
]
dispinterface
DispHTMLXMLHttpRequest
;
/*
[
source
,
default
]
dispinterface
HTMLXMLHttpRequestEvents
; */
interface
IHTMLXMLHttpRequest
;
interface
IHTMLXMLHttpRequest2
;
interface
IHTMLDOMConstructor
;
interface
IEventTarget
;
}
/*****************************************************************************
*
IHTMLControlElement
interface
*/
[
...
...
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