diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-06-28 09:06:44 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-06-28 09:06:44 +0200 |
commit | ada0b20a871a616c419a718e4e2c1a3640709066 (patch) | |
tree | 26519d64e7ab87a4e180db08337f31f252119547 | |
parent | a10ccda0a3c9ad2b07ad670b2d286519f854956b (diff) | |
download | ffi-efl-ada0b20a871a616c419a718e4e2c1a3640709066.zip ffi-efl-ada0b20a871a616c419a718e4e2c1a3640709066.tar.gz |
ecore_input: add ecore_mode to ecore_event_modifier enum
-rw-r--r-- | lib/efl/native/ecore_input.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/efl/native/ecore_input.rb b/lib/efl/native/ecore_input.rb index ebb4289..43295bb 100644 --- a/lib/efl/native/ecore_input.rb +++ b/lib/efl/native/ecore_input.rb @@ -22,7 +22,8 @@ module Efl # # ENUMS # typedef enum _Ecore_Event_Modifier {...} Ecore_Event_Modifier; - enum :ecore_event_modifier, [ :ecore_none, :ecore_shift, :ecore_ctrl, :ecore_alt, :ecore_win, :ecore_scroll, :ecore_caps, :ecore_last ] + enum :ecore_event_modifier, [ :ecore_none, :ecore_shift, :ecore_ctrl, :ecore_alt, :ecore_win, :ecore_scroll, :ecore_caps, :ecore_mode, + :ecore_last ] # typedef enum _Ecore_Event_Press {...} Ecore_Event_Press; enum :ecore_event_press, [ :ecore_down, :ecore_up ] # typedef enum _Ecore_Event_IO {...} Ecore_Event_IO; |