mshtml.idl: Added HTMLAnchorElement coclass declaration.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
abdec32f68
commit
0636249b0e
|
@ -35,13 +35,13 @@
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
||||||
|
|
||||||
typedef struct {
|
struct HTMLAnchorElement {
|
||||||
HTMLElement element;
|
HTMLElement element;
|
||||||
|
|
||||||
IHTMLAnchorElement IHTMLAnchorElement_iface;
|
IHTMLAnchorElement IHTMLAnchorElement_iface;
|
||||||
|
|
||||||
nsIDOMHTMLAnchorElement *nsanchor;
|
nsIDOMHTMLAnchorElement *nsanchor;
|
||||||
} HTMLAnchorElement;
|
};
|
||||||
|
|
||||||
static HRESULT navigate_href_new_window(HTMLElement *element, nsAString *href_str, const WCHAR *target)
|
static HRESULT navigate_href_new_window(HTMLElement *element, nsAString *href_str, const WCHAR *target)
|
||||||
{
|
{
|
||||||
|
|
|
@ -9793,6 +9793,24 @@ methods:
|
||||||
BSTR ie8_href();
|
BSTR ie8_href();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*****************************************************************************
|
||||||
|
* HTMLAnchorElement coclass
|
||||||
|
*/
|
||||||
|
[
|
||||||
|
noncreatable,
|
||||||
|
uuid(3050f248-98b5-11cf-bb82-00aa00bdce0b)
|
||||||
|
]
|
||||||
|
coclass HTMLAnchorElement
|
||||||
|
{
|
||||||
|
[default] dispinterface DispHTMLAnchorElement;
|
||||||
|
/* [source, default] dispinterface HTMLAnchorEvents; */
|
||||||
|
/* [source] dispinterface HTMLAnchorEvents2; */
|
||||||
|
WINE_HTMLDATAELEMENT_INTERFACES;
|
||||||
|
interface IHTMLAnchorElement;
|
||||||
|
/* interface IHTMLAnchorElement2; */
|
||||||
|
/* interface IHTMLAnchorElement3; */
|
||||||
|
}
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
* IHTMLAreaElement interface
|
* IHTMLAreaElement interface
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue