mshtml: Added IHTMLDivElement declaration.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7cac7bb99f
commit
8cba37944c
|
@ -2993,6 +2993,10 @@
|
||||||
/* IHTMLScriptElement3 */
|
/* IHTMLScriptElement3 */
|
||||||
#define DISPID_IHTMLSCRIPTELEMENT3_IE8_SRC DISPID_IE8_SCRIPT
|
#define DISPID_IHTMLSCRIPTELEMENT3_IE8_SRC DISPID_IE8_SCRIPT
|
||||||
|
|
||||||
|
/* IHTMLDivElement */
|
||||||
|
#define DISPID_IHTMLDIVELEMENT_ALIGN STDPROPID_XOBJ_BLOCKALIGN
|
||||||
|
#define DISPID_IHTMLDIVELEMENT_NOWRAP DISPID_A_NOWRAP
|
||||||
|
|
||||||
/* IHTMLObjectElement */
|
/* IHTMLObjectElement */
|
||||||
#define DISPID_IHTMLOBJECTELEMENT_OBJECT DISPID_OBJECT+1
|
#define DISPID_IHTMLOBJECTELEMENT_OBJECT DISPID_OBJECT+1
|
||||||
#define DISPID_IHTMLOBJECTELEMENT_CLASSID DISPID_OBJECT+2
|
#define DISPID_IHTMLOBJECTELEMENT_CLASSID DISPID_OBJECT+2
|
||||||
|
|
|
@ -17840,6 +17840,56 @@ interface IHTMLObjectElement2 : IDispatch
|
||||||
HRESULT data([out, retval] BSTR *p);
|
HRESULT data([out, retval] BSTR *p);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*****************************************************************************
|
||||||
|
* 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
|
* IHTMLParamElement interface
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue