mshtml.idl: Added HTMLStyle coclass declaration.

This commit is contained in:
Jacek Caban 2008-12-30 21:23:56 +01:00 committed by Alexandre Julliard
parent f9cbbab53b
commit 2b3c8ad501
2 changed files with 16 additions and 2 deletions

View File

@ -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)

View File

@ -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
*/