From a3559569ea4dccb8858ec3332fabee5e069230b0 Mon Sep 17 00:00:00 2001 From: Bill Haneman Date: Tue, 20 Nov 2001 11:34:09 +0000 Subject: [PATCH] Introduced AtkKeyEventType, to insulate us from GDK dependencies. --- atk/atkutil.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/atk/atkutil.h b/atk/atkutil.h index 5fadb95..fe6d6eb 100755 --- a/atk/atkutil.h +++ b/atk/atkutil.h @@ -57,9 +57,16 @@ struct _AtkKeyEventStruct { gint length; gchar *string; guint16 keycode; - guint32 time; + guint32 timestamp; }; +typedef enum +{ + ATK_KEY_EVENT_PRESS, + ATK_KEY_EVENT_RELEASE, + ATK_KEY_EVENT_LAST_DEFINED +} AtkKeyEventType; + struct _AtkUtil { GObject parent; -- 2.7.4