Commit eb9b998c authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml.idl: Added HTMLScriptElement coclass declaration.

parent 16189147
...@@ -16,7 +16,7 @@ ...@@ -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 HTMLScriptElement {
HTMLElement element; HTMLElement element;
IHTMLScriptElement IHTMLScriptElement_iface; IHTMLScriptElement IHTMLScriptElement_iface;
...@@ -28,7 +28,7 @@ typedef struct { ...@@ -28,7 +28,7 @@ typedef struct {
READYSTATE readystate; READYSTATE readystate;
WCHAR *src_text; /* sctipt text downloaded from src */ WCHAR *src_text; /* sctipt text downloaded from src */
BSCallback *binding; /* weak reference to current binding */ BSCallback *binding; /* weak reference to current binding */
} HTMLScriptElement; };
typedef struct { typedef struct {
struct list entry; struct list entry;
......
...@@ -18635,6 +18635,25 @@ methods: ...@@ -18635,6 +18635,25 @@ methods:
} }
/***************************************************************************** /*****************************************************************************
* HTMLScriptElement coclass
*/
[
noncreatable,
uuid(3050f28c-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLScriptElement
{
[default] dispinterface DispHTMLScriptElement;
/* [source, default] dispinterface HTMLScriptEvents; */
/* [source] dispinterface HTMLScriptEvents2; */
WINE_HTMLELEMENT_INTERFACES;
interface IHTMLScriptElement;
interface IHTMLScriptElement2;
/* interface IHTMLScriptElement3; */
/* interface IHTMLScriptElement4; */
}
/*****************************************************************************
* IHTMLObjectElement interface * IHTMLObjectElement 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