Commit 8cba3794 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Added IHTMLDivElement declaration.

parent 7cac7bb9
......@@ -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
......
......@@ -17841,6 +17841,56 @@ interface IHTMLObjectElement2 : IDispatch
}
/*****************************************************************************
* IHTMLDivElement interface
*/
[
odl,
oleautomation,
dual,
uuid(3050f200-98b5-11cf-bb82-00aa00bdce0b)
]
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(3050f50c-98b5-11cf-bb82-00aa00bdce0b)
]
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
*/
[
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment