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
30a477d3
Commit
30a477d3
authored
Apr 02, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 02, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml.idl: Added DispHTMLMetaElement declaration.
parent
d963a8f8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
70 additions
and
1 deletion
+70
-1
mshtmdid.h
include/mshtmdid.h
+13
-0
mshtml.idl
include/mshtml.idl
+57
-1
No files found.
include/mshtmdid.h
View file @
30a477d3
...
...
@@ -2402,6 +2402,19 @@
/* IHTMLTitleElement */
#define DISPID_IHTMLTITLEELEMENT_TEXT DISPID_A_VALUE
/* IHTMLMetaElement */
#define DISPID_IHTMLMETAELEMENT_HTTPEQUIV DISPID_HEDELEMS+1
#define DISPID_IHTMLMETAELEMENT_CONTENT DISPID_HEDELEMS+2
#define DISPID_IHTMLMETAELEMENT_NAME STDPROPID_XOBJ_NAME
#define DISPID_IHTMLMETAELEMENT_URL DISPID_HEDELEMS+3
#define DISPID_IHTMLMETAELEMENT_CHARSET DISPID_HEDELEMS+13
/* IHTMLMetaElement2 */
#define DISPID_IHTMLMETAELEMENT2_SCHEME DISPID_HEDELEMS+20
/* IHTMLMetaElement3 */
#define DISPID_IHTMLMETAELEMENT3_IE8_URL DISPID_IE8_META
/* IHTMLRect */
#define DISPID_IHTMLRECT_LEFT DISPID_OMRECT+1
#define DISPID_IHTMLRECT_TOP DISPID_OMRECT+2
...
...
include/mshtml.idl
View file @
30a477d3
...
...
@@ -9657,7 +9657,63 @@ methods:
}
/*****************************************************************************
*
DispHTMLUnknownElement
interface
*
DispHTMLMetaElement
dispinterface
*/
[
hidden
,
uuid
(
3050
f517
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
dispinterface
DispHTMLMetaElement
{
properties
:
methods
:
WINE_HTMLELEMENT_DISPINTERFACE_DECL
;
[
propput
,
id
(
DISPID_IHTMLMETAELEMENT_HTTPEQUIV
),
displaybind
,
bindable
]
void
httpEquiv
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLMETAELEMENT_HTTPEQUIV
),
displaybind
,
bindable
]
BSTR
httpEquiv
()
;
[
propput
,
id
(
DISPID_IHTMLMETAELEMENT_CONTENT
),
displaybind
,
bindable
]
void
content
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLMETAELEMENT_CONTENT
),
displaybind
,
bindable
]
BSTR
content
()
;
[
propput
,
id
(
DISPID_IHTMLMETAELEMENT_NAME
),
displaybind
,
bindable
]
void
name
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLMETAELEMENT_NAME
),
displaybind
,
bindable
]
BSTR
name
()
;
[
propput
,
id
(
DISPID_IHTMLMETAELEMENT_URL
),
displaybind
,
bindable
]
void
url
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLMETAELEMENT_URL
),
displaybind
,
bindable
]
BSTR
url
()
;
[
propput
,
id
(
DISPID_IHTMLMETAELEMENT_CHARSET
),
displaybind
,
bindable
]
void
charset
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLMETAELEMENT_CHARSET
),
displaybind
,
bindable
]
BSTR
charset
()
;
[
propput
,
id
(
DISPID_IHTMLMETAELEMENT2_SCHEME
),
displaybind
,
bindable
]
void
scheme
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLMETAELEMENT2_SCHEME
),
displaybind
,
bindable
]
BSTR
scheme
()
;
[
propput
,
id
(
DISPID_IHTMLMETAELEMENT3_IE8_URL
)
]
void
ie8_url
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLMETAELEMENT3_IE8_URL
)
]
BSTR
ie8_url
()
;
}
/*****************************************************************************
*
DispHTMLUnknownElement
dispinterface
*/
[
hidden
,
...
...
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