Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
2a5d096f
Commit
2a5d096f
authored
Nov 08, 2022
by
Gabriel Ivăncescu
Committed by
Alexandre Julliard
Nov 08, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add IDOMParser interface, dispinterface, and coclass.
Signed-off-by:
Gabriel Ivăncescu
<
gabrielopcode@gmail.com
>
parent
0c875dfa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
0 deletions
+44
-0
mshtmdid.h
include/mshtmdid.h
+4
-0
mshtml.idl
include/mshtml.idl
+40
-0
No files found.
include/mshtmdid.h
View file @
2a5d096f
...
...
@@ -105,6 +105,7 @@
#define DISPID_NAMESPACE DISPID_NORMAL_FIRST
#define DISPID_TAGNAMES_COLLECTION DISPID_NORMAL_FIRST
#define DISPID_XMLHTTPREQUEST DISPID_NORMAL_FIRST
#define DISPID_DOMPARSER DISPID_NORMAL_FIRST
#define DISPID_DOCUMENTCOMPATIBLEINFO_COLLECTION DISPID_NORMAL_FIRST
#define DISPID_DOCUMENTCOMPATIBLEINFO DISPID_NORMAL_FIRST
#define DISPID_XDOMAINREQUEST DISPID_NORMAL_FIRST
...
...
@@ -4631,6 +4632,9 @@
#define DISPID_IHTMLDOMCONSTRUCTORCOLLECTION_XDOMAINREQUEST DISPID_WINDOW+8001+DomConstructorXDomainRequest
#define DISPID_IHTMLDOMCONSTRUCTORCOLLECTION_XMLHTTPREQUEST DISPID_WINDOW+8001+DomConstructorXMLHttpRequest
/* IDOMParser */
#define DISPID_IDOMPARSER_PARSEFROMSTRING DISPID_DOMPARSER
/* IEventTarget */
#define DISPID_IEVENTTARGET_ADDEVENTLISTENER DISPID_HTMLOBJECT+10
#define DISPID_IEVENTTARGET_REMOVEEVENTLISTENER DISPID_HTMLOBJECT+11
...
...
include/mshtml.idl
View file @
2a5d096f
...
...
@@ -29589,6 +29589,46 @@ interface IHTMLDOMConstructorCollection : IDispatch
}
/*****************************************************************************
*
IDOMParser
interface
*/
[
odl
,
oleautomation
,
dual
,
uuid
(
30510781
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
interface
IDOMParser
:
IDispatch
{
[
id
(
DISPID_IDOMPARSER_PARSEFROMSTRING
)
]
HRESULT
parseFromString
(
[
in
]
BSTR
string
,
[
in
]
BSTR
mimeType
,
[
retval
,
out
]
IHTMLDocument2
**
ppNode
)
;
}
/*****************************************************************************
*
DispDOMParser
dispinterface
*/
[
hidden
,
uuid
(
305900
ae
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
dispinterface
DispDOMParser
{
properties
:
methods
:
[
id
(
DISPID_IDOMPARSER_PARSEFROMSTRING
)
]
IHTMLDocument2
*
parseFromString
(
[
in
]
BSTR
string
,
[
in
]
BSTR
mimeType
)
;
}
[
noncreatable
,
uuid
(
30510782
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
coclass
DOMParser
{
[
default
]
dispinterface
DispDOMParser
;
interface
IDOMParser
;
}
/*****************************************************************************
*
IXMLGenericParse
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