Commit 3077358a authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Store DOMEvent instead of nsIDOMEvent in HTMLEventObj.

parent 8c74926b
......@@ -55,6 +55,15 @@ typedef enum {
EVENTID_LAST
} eventid_t;
typedef struct {
DispatchEx dispex;
IDOMEvent IDOMEvent_iface;
LONG ref;
nsIDOMEvent *nsevent;
} DOMEvent;
eventid_t str_to_eid(LPCWSTR) DECLSPEC_HIDDEN;
void check_event_attr(HTMLDocumentNode*,nsIDOMHTMLElement*) DECLSPEC_HIDDEN;
void release_event_target(EventTarget*) DECLSPEC_HIDDEN;
......
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