mshtml: Added keyup event support.

oldstable
Jacek Caban 2008-06-23 20:01:04 -05:00 committed by Alexandre Julliard
parent 7057d7a914
commit 0848cc977f
2 changed files with 5 additions and 0 deletions

View File

@ -38,6 +38,9 @@ struct event_target_t {
static const WCHAR clickW[] = {'c','l','i','c','k',0};
static const WCHAR onclickW[] = {'o','n','c','l','i','c','k',0};
static const WCHAR keyupW[] = {'k','e','y','u','p',0};
static const WCHAR onkeyupW[] = {'o','n','k','e','y','u','p',0};
static const WCHAR loadW[] = {'l','o','a','d',0};
static const WCHAR onloadW[] = {'o','n','l','o','a','d',0};
@ -51,6 +54,7 @@ typedef struct {
static const event_info_t event_info[] = {
{clickW, onclickW, EVENT_DEFAULTLISTENER},
{keyupW, onkeyupW, EVENT_DEFAULTLISTENER},
{loadW, onloadW, 0}
};

View File

@ -100,6 +100,7 @@ typedef enum {
typedef enum {
EVENTID_CLICK,
EVENTID_KEYUP,
EVENTID_LOAD,
EVENTID_LAST
} eventid_t;