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
e89ef980
Commit
e89ef980
authored
4 years ago
by
Jacek Caban
Committed by
Alexandre Julliard
4 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml.idl: Add IHTMLNamespaceCollection declaration.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c02b63fb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
0 deletions
+60
-0
mshtmdid.h
include/mshtmdid.h
+5
-0
mshtml.idl
include/mshtml.idl
+55
-0
No files found.
include/mshtmdid.h
View file @
e89ef980
...
...
@@ -4714,4 +4714,9 @@
/* IDocumentRange */
#define DISPID_IDOCUMENTRANGE_CREATERANGE DISPID_OMDOCUMENT+111
/* IHTMLNamespaceCollection */
#define DISPID_IHTMLNAMESPACECOLLECTION_LENGTH DISPID_NAMESPACE_COLLECTION
#define DISPID_IHTMLNAMESPACECOLLECTION_ITEM DISPID_VALUE
#define DISPID_IHTMLNAMESPACECOLLECTION_ADD DISPID_NAMESPACE_COLLECTION+1
#endif
/* __MSHTMDID_H__ */
This diff is collapsed.
Click to expand it.
include/mshtml.idl
View file @
e89ef980
...
...
@@ -28003,6 +28003,61 @@ interface IDOMMessageEvent : IDispatch
[
in
]
IHTMLWindow2
*
source
)
;
}
/*****************************************************************************
*
IHTMLNamespaceCollection
interface
*/
[
odl
,
oleautomation
,
dual
,
uuid
(
3050
f6b8
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
interface
IHTMLNamespaceCollection
:
IDispatch
{
[
propget
,
id
(
DISPID_IHTMLNAMESPACECOLLECTION_LENGTH
)
]
HRESULT
length
(
[
out
,
retval
]
long
*
p
)
;
[
id
(
DISPID_IHTMLNAMESPACECOLLECTION_ITEM
)
]
HRESULT
item
(
[
in
]
VARIANT
index
,
[
out
,
retval
]
IDispatch
**
ppNamespace
)
;
[
id
(
DISPID_IHTMLNAMESPACECOLLECTION_ADD
)
]
HRESULT
add
(
[
in
]
BSTR
bstrNamespace
,
[
in
]
BSTR
bstrUrn
,
[
in
,
optional
]
VARIANT
implementationUrl
,
[
out
,
retval
]
IDispatch
**
ppNamespace
)
;
}
/*****************************************************************************
*
DispHTMLNamespaceCollection
dispinterface
*/
[
hidden
,
uuid
(
3050
f550
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
dispinterface
DispHTMLNamespaceCollection
{
properties
:
methods
:
[
propget
,
id
(
DISPID_IHTMLNAMESPACECOLLECTION_LENGTH
)
]
long
length
()
;
[
id
(
DISPID_IHTMLNAMESPACECOLLECTION_ITEM
)
]
IDispatch
*
item
(
[
in
]
VARIANT
index
)
;
[
id
(
DISPID_IHTMLNAMESPACECOLLECTION_ADD
)
]
IDispatch
*
add
(
[
in
]
BSTR
bstrNamespace
,
[
in
]
BSTR
bstrUrn
,
[
in
,
optional
]
VARIANT
implementationUrl
)
;
[
propget
,
id
(
DISPID_IHTMLDOMCONSTRUCTOR_CONSTRUCTOR
),
hidden
]
IDispatch
*
constructor
()
;
}
/*****************************************************************************
*
ILineInfo
interface
*/
This diff is collapsed.
Click to expand it.
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