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
0f988544
Commit
0f988544
authored
Feb 28, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 28, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml.idl: Added IHTMLLabelElement* interfaces declarations.
parent
4ef6a968
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
69 additions
and
0 deletions
+69
-0
mshtmdid.h
include/mshtmdid.h
+7
-0
mshtml.idl
include/mshtml.idl
+62
-0
No files found.
include/mshtmdid.h
View file @
0f988544
...
...
@@ -2377,6 +2377,13 @@
#define DISPID_IHTMLANCHORELEMENT3_IE8_COORDS DISPID_IE8_ANCHOR+2
#define DISPID_IHTMLANCHORELEMENT3_IE8_HREF DISPID_IE8_ANCHOR+3
/* IHTMLLabelElement */
#define DISPID_IHTMLLABELELEMENT_HTMLFOR DISPID_LABEL
#define DISPID_IHTMLLABELELEMENT_ACCESSKEY DISPID_SITE+5
/* IHTMLLabelElement2 */
#define DISPID_IHTMLLABELELEMENT2_FORM DISPID_LABEL+2
/* IHTMLTxtRange */
#define DISPID_IHTMLTXTRANGE_HTMLTEXT DISPID_RANGE+3
#define DISPID_IHTMLTXTRANGE_TEXT DISPID_RANGE+4
...
...
include/mshtml.idl
View file @
0f988544
...
...
@@ -8968,6 +8968,68 @@ methods:
}
/*****************************************************************************
*
IHTMLLabelElement
interface
*/
[
odl
,
oleautomation
,
dual
,
uuid
(
3050
f32a
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
interface
IHTMLLabelElement
:
IDispatch
{
[
propput
,
id
(
DISPID_IHTMLLABELELEMENT_HTMLFOR
),
displaybind
,
bindable
]
HRESULT
htmlFor
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLLABELELEMENT_HTMLFOR
),
displaybind
,
bindable
]
HRESULT
htmlFor
(
[
out
,
retval
]
BSTR
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLLABELELEMENT_ACCESSKEY
),
displaybind
,
bindable
]
HRESULT
accessKey
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLLABELELEMENT_ACCESSKEY
),
displaybind
,
bindable
]
HRESULT
accessKey
(
[
out
,
retval
]
BSTR
*
p
)
;
}
/*****************************************************************************
*
IHTMLLabelElement2
interface
*/
[
odl
,
oleautomation
,
dual
,
uuid
(
3050
f832
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
interface
IHTMLLabelElement2
:
IDispatch
{
[
propget
,
id
(
DISPID_IHTMLLABELELEMENT2_FORM
)
]
HRESULT
form
(
[
out
,
retval
]
IHTMLFormElement
**
p
)
;
}
/*****************************************************************************
*
DispHTMLLabelElement
dispinterface
*/
[
hidden
,
uuid
(
3050
f522
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
dispinterface
DispHTMLLabelElement
{
properties
:
methods
:
WINE_HTMLDATAELEMENT_DISPINTERFACE_DECL
;
[
propput
,
id
(
DISPID_IHTMLLABELELEMENT_HTMLFOR
),
displaybind
,
bindable
]
void
htmlFor
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLLABELELEMENT_HTMLFOR
),
displaybind
,
bindable
]
BSTR
htmlFor
()
;
[
propget
,
id
(
DISPID_IHTMLLABELELEMENT2_FORM
)
]
IHTMLFormElement
*
form
()
;
}
/*****************************************************************************
*
IHTMLElementCollection
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