Commit 2b3c8ad5 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml.idl: Added HTMLStyle coclass declaration.

parent f9cbbab5
......@@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
typedef struct {
struct HTMLStyle {
DispatchEx dispex;
const IHTMLStyleVtbl *lpHTMLStyleVtbl;
const IHTMLStyle2Vtbl *lpHTMLStyle2Vtbl;
......@@ -24,7 +24,7 @@ typedef struct {
LONG ref;
nsIDOMCSSStyleDeclaration *nsstyle;
} HTMLStyle;
};
#define HTMLSTYLE(x) ((IHTMLStyle*) &(x)->lpHTMLStyleVtbl)
#define HTMLSTYLE2(x) ((IHTMLStyle2*) &(x)->lpHTMLStyle2Vtbl)
......
......@@ -2245,6 +2245,20 @@ methods:
VARIANT minHeight();
}
[
noncreatable,
uuid(3050f285-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLStyle
{
[default] dispinterface DispHTMLStyle;
interface IHTMLStyle;
interface IHTMLStyle2;
/* interface IHTMLStyle3; */
/* interface IHTMLStyle4; */
/* interface IHTMLStyle5; */
}
/*****************************************************************************
* IHTMLRenderStyle 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