summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2013-01-04 00:10:14 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2013-01-04 00:10:14 +0100
commit13ad56dc0a477a0141da78b3353ffd8aa53f230a (patch)
tree1969b86c67a531226668157d8783ca12fcd11393
parent4be1e822ba51ce9d6e637952cbd71849eb856bf2 (diff)
downloadffi-efl-13ad56dc0a477a0141da78b3353ffd8aa53f230a.zip
ffi-efl-13ad56dc0a477a0141da78b3353ffd8aa53f230a.tar.gz
fix enotify enums
-rw-r--r--lib/efl/native/enotify.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/efl/native/enotify.rb b/lib/efl/native/enotify.rb
index 111a73b..288ee8f 100644
--- a/lib/efl/native/enotify.rb
+++ b/lib/efl/native/enotify.rb
@@ -25,14 +25,13 @@ module Efl
# ENUMS
# typedef enum E_Notification_Urgency {...} E_Notification_Urgency;
enum :e_notification_urgency, [ :e_notification_urgency_low, 0, :e_notification_urgency_normal, 1, :e_notification_urgency_critical, 2 ]
- # typedef enum E_Closed_Action {...} E_Closed_Action;
- enum :e_notification_closed_action, [ :e_notification_closed_expired, 0, :e_notification_closed_dismissed, 1, :e_notification_closed_requested, 2,
- :e_notification_closed_undefined, 3 ]
-
# typedef enum E_Notification_Hint_Type {...} E_Notification_Hint_Type;
enum :e_notification_hint_type, [ :e_notification_hint_urgency, (1 << 0), :e_notification_hint_category, (1 << 1), :e_notification_hint_desktop, (1 << 2),
:e_notification_hint_sound_file, (1 << 3), :e_notification_hint_transient, (1 << 4), :e_notification_hint_resident, (1 << 5),
:e_notification_hint_action_icons, (1 << 6), :e_notification_hint_suppress_sound, 0x10, :e_notification_hint_xy, 0x20, :e_notification_hint_image_data, 0x40 ]
+ # typedef enum E_Closed_Reason {...} E_Closed_Reason;
+ enum :e_notification_closed_reason, [ :e_notification_closed_expired, 0, :e_notification_closed_dismissed, 1, :e_notification_closed_requested, 2,
+ :e_notification_closed_undefined, 3 ]
# TYPEDEFS
# typedef struct E_Notification_Image E_Notification_Image;
typedef :pointer, :e_notification_image