Commit 9689cbcb authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml.idl: Added HTMLSelectElement coclass declaration.

parent a17e6b33
...@@ -33,13 +33,13 @@ ...@@ -33,13 +33,13 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml); WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct { struct HTMLSelectElement {
HTMLElement element; HTMLElement element;
IHTMLSelectElement IHTMLSelectElement_iface; IHTMLSelectElement IHTMLSelectElement_iface;
nsIDOMHTMLSelectElement *nsselect; nsIDOMHTMLSelectElement *nsselect;
} HTMLSelectElement; };
static inline HTMLSelectElement *impl_from_IHTMLSelectElement(IHTMLSelectElement *iface) static inline HTMLSelectElement *impl_from_IHTMLSelectElement(IHTMLSelectElement *iface)
{ {
......
...@@ -10373,6 +10373,27 @@ methods: ...@@ -10373,6 +10373,27 @@ methods:
} }
/***************************************************************************** /*****************************************************************************
* HTMLSelectElement coclass
*/
[
noncreatable,
uuid(3050f245-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLSelectElement
{
[default] dispinterface DispHTMLSelectElement;
/* [source, default] dispinterface HTMLSelectElementEvents; */
/* [source] dispinterface HTMLSelectElementEvents2; */
WINE_HTMLDATAELEMENT_INTERFACES;
interface IHTMLControlElement;
interface IHTMLSelectElement;
/* interface IHTMLSelectElement2; */
/* interface IHTMLSelectElement4; */
/* interface IHTMLSelectElement5; */
/* interface IHTMLSelectElement6; */
}
/*****************************************************************************
* IHTMLSelectionObject interface * IHTMLSelectionObject 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