mshtml.idl: Added HTMLScriptElement coclass declaration.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2017-04-20 16:09:29 +02:00 committed by Alexandre Julliard
parent 16189147c6
commit eb9b998c15
2 changed files with 21 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 HTMLScriptElement {
HTMLElement element;
IHTMLScriptElement IHTMLScriptElement_iface;
@ -28,7 +28,7 @@ typedef struct {
READYSTATE readystate;
WCHAR *src_text; /* sctipt text downloaded from src */
BSCallback *binding; /* weak reference to current binding */
} HTMLScriptElement;
};
typedef struct {
struct list entry;

View File

@ -18634,6 +18634,25 @@ methods:
BSTR ie8_src();
}
/*****************************************************************************
* 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
*/