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
0f8300c4
Commit
0f8300c4
authored
Jun 21, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 21, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml.idl: Added head element interfaces.
parent
7b3d1bbc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
68 additions
and
0 deletions
+68
-0
mshtmdid.h
include/mshtmdid.h
+6
-0
mshtml.idl
include/mshtml.idl
+62
-0
No files found.
include/mshtmdid.h
View file @
0f8300c4
...
...
@@ -2282,6 +2282,12 @@
/* IHTMLSelectElement4 */
#define DISPID_IHTMLSELECTELEMENT4_NAMEDITEM DISPID_COLLECTION+6
/* IHTMLHeadElement */
#define DISPID_IHTMLHEADELEMENT_PROFILE DISPID_HEDELEMS+1
/* IHTMLHeadElement2 */
#define DISPID_IHTMLHEADELEMENT2_IE8_PROFILE DISPID_IE8_HEAD
/* IHTMLRect */
#define DISPID_IHTMLRECT_LEFT DISPID_OMRECT+1
#define DISPID_IHTMLRECT_TOP DISPID_OMRECT+2
...
...
include/mshtml.idl
View file @
0f8300c4
...
...
@@ -9187,6 +9187,68 @@ methods:
}
/*****************************************************************************
*
IHTMLHeadElement
interface
*/
[
odl
,
oleautomation
,
dual
,
uuid
(
3050
f81d
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
interface
IHTMLHeadElement
:
IDispatch
{
[
propput
,
id
(
DISPID_IHTMLHEADELEMENT_PROFILE
),
displaybind
,
bindable
]
HRESULT
profile
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLHEADELEMENT_PROFILE
),
displaybind
,
bindable
]
HRESULT
profile
(
[
retval
,
out
]
BSTR
*
p
)
;
}
/*****************************************************************************
*
IHTMLHeadElement2
interface
*/
[
odl
,
oleautomation
,
dual
,
uuid
(
3051042
f
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
interface
IHTMLHeadElement2
:
IDispatch
{
[
propput
,
id
(
DISPID_IHTMLHEADELEMENT2_IE8_PROFILE
),
displaybind
,
bindable
]
HRESULT
profile
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLHEADELEMENT2_IE8_PROFILE
),
displaybind
,
bindable
]
HRESULT
profile
(
[
retval
,
out
]
BSTR
*
p
)
;
}
/*****************************************************************************
*
DispHTMLHeadElement
interface
*/
[
hidden
,
uuid
(
3050
f561
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
dispinterface
DispHTMLHeadElement
{
properties
:
methods
:
WINE_HTMLELEMENT_DISPINTERFACE_DECL
;
[
propput
,
id
(
DISPID_IHTMLHEADELEMENT_PROFILE
),
displaybind
,
bindable
]
void
profile
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLHEADELEMENT_PROFILE
),
displaybind
,
bindable
]
BSTR
profile
()
;
[
propput
,
id
(
DISPID_IHTMLHEADELEMENT2_IE8_PROFILE
),
displaybind
,
bindable
]
void
ie8_profile
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLHEADELEMENT2_IE8_PROFILE
),
displaybind
,
bindable
]
BSTR
ie8_profile
()
;
}
/*****************************************************************************
*
DispHTMLUnknownElement
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