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
8cba3794
Commit
8cba3794
authored
Apr 01, 2016
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 01, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLDivElement declaration.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7cac7bb9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
0 deletions
+54
-0
mshtmdid.h
include/mshtmdid.h
+4
-0
mshtml.idl
include/mshtml.idl
+50
-0
No files found.
include/mshtmdid.h
View file @
8cba3794
...
...
@@ -2993,6 +2993,10 @@
/* IHTMLScriptElement3 */
#define DISPID_IHTMLSCRIPTELEMENT3_IE8_SRC DISPID_IE8_SCRIPT
/* IHTMLDivElement */
#define DISPID_IHTMLDIVELEMENT_ALIGN STDPROPID_XOBJ_BLOCKALIGN
#define DISPID_IHTMLDIVELEMENT_NOWRAP DISPID_A_NOWRAP
/* IHTMLObjectElement */
#define DISPID_IHTMLOBJECTELEMENT_OBJECT DISPID_OBJECT+1
#define DISPID_IHTMLOBJECTELEMENT_CLASSID DISPID_OBJECT+2
...
...
include/mshtml.idl
View file @
8cba3794
...
...
@@ -17841,6 +17841,56 @@ interface IHTMLObjectElement2 : IDispatch
}
/*****************************************************************************
*
IHTMLDivElement
interface
*/
[
odl
,
oleautomation
,
dual
,
uuid
(
3050
f200
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
interface
IHTMLDivElement
:
IDispatch
{
[
propput
,
id
(
DISPID_IHTMLDIVELEMENT_ALIGN
),
displaybind
,
bindable
]
HRESULT
align
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLDIVELEMENT_ALIGN
),
displaybind
,
bindable
]
HRESULT
align
(
[
out
,
retval
]
BSTR
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLDIVELEMENT_NOWRAP
),
displaybind
,
bindable
]
HRESULT
noWrap
(
[
in
]
VARIANT_BOOL
v
)
;
[
propget
,
id
(
DISPID_IHTMLDIVELEMENT_NOWRAP
),
displaybind
,
bindable
]
HRESULT
noWrap
(
[
out
,
retval
]
VARIANT_BOOL
*
p
)
;
}
/*****************************************************************************
*
DispHTMLDivElement
dispinterface
*/
[
hidden
,
uuid
(
3050
f50c
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
dispinterface
DispHTMLDivElement
{
properties
:
methods
:
WINE_HTMLELEMENT_DISPINTERFACE_DECL
;
[
propput
,
id
(
DISPID_IHTMLDIVELEMENT_ALIGN
),
displaybind
,
bindable
]
void
align
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLDIVELEMENT_ALIGN
),
displaybind
,
bindable
]
BSTR
align
()
;
[
propput
,
id
(
DISPID_IHTMLDIVELEMENT_NOWRAP
),
displaybind
,
bindable
]
void
noWrap
(
VARIANT_BOOL
v
)
;
[
propget
,
id
(
DISPID_IHTMLDIVELEMENT_NOWRAP
),
displaybind
,
bindable
]
VARIANT_BOOL
noWrap
()
;
}
/*****************************************************************************
*
IHTMLParamElement
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