mshtml.idl: Added HTMLStyle coclass declaration.
This commit is contained in:
parent
f9cbbab53b
commit
2b3c8ad501
|
@ -16,7 +16,7 @@
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
typedef struct {
|
struct HTMLStyle {
|
||||||
DispatchEx dispex;
|
DispatchEx dispex;
|
||||||
const IHTMLStyleVtbl *lpHTMLStyleVtbl;
|
const IHTMLStyleVtbl *lpHTMLStyleVtbl;
|
||||||
const IHTMLStyle2Vtbl *lpHTMLStyle2Vtbl;
|
const IHTMLStyle2Vtbl *lpHTMLStyle2Vtbl;
|
||||||
|
@ -24,7 +24,7 @@ typedef struct {
|
||||||
LONG ref;
|
LONG ref;
|
||||||
|
|
||||||
nsIDOMCSSStyleDeclaration *nsstyle;
|
nsIDOMCSSStyleDeclaration *nsstyle;
|
||||||
} HTMLStyle;
|
};
|
||||||
|
|
||||||
#define HTMLSTYLE(x) ((IHTMLStyle*) &(x)->lpHTMLStyleVtbl)
|
#define HTMLSTYLE(x) ((IHTMLStyle*) &(x)->lpHTMLStyleVtbl)
|
||||||
#define HTMLSTYLE2(x) ((IHTMLStyle2*) &(x)->lpHTMLStyle2Vtbl)
|
#define HTMLSTYLE2(x) ((IHTMLStyle2*) &(x)->lpHTMLStyle2Vtbl)
|
||||||
|
|
|
@ -2245,6 +2245,20 @@ methods:
|
||||||
VARIANT minHeight();
|
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
|
* IHTMLRenderStyle interface
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue