diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-04-11 23:04:48 +0200 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-04-11 23:04:48 +0200 | 
| commit | 9c39aee51c91457ee9177fabca8a6689a8d8d05a (patch) | |
| tree | e32ffb54a178204847cf338ba765081bc8f803f4 /lib | |
| parent | 455dd7ecbbe137fef1ff5507055541350a924382 (diff) | |
| download | ffi-efl-9c39aee51c91457ee9177fabca8a6689a8d8d05a.zip ffi-efl-9c39aee51c91457ee9177fabca8a6689a8d8d05a.tar.gz  | |
update eet spec
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/efl/ecore.rb | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/efl/ecore.rb b/lib/efl/ecore.rb index 95f1d49..209d7a5 100644 --- a/lib/efl/ecore.rb +++ b/lib/efl/ecore.rb @@ -12,6 +12,8 @@ module EFL          functions = [              [ :ecore_init, [ ], :int ],              [ :ecore_shutdown, [], :int ], +            [ :ecore_main_loop_begin, [], :void], +            [ :ecore_main_loop_quit, [], :void],          ].each do |func|              begin                  attach_function *func @@ -23,6 +25,8 @@ module EFL          class << self              alias init ecore_init              alias shutdown ecore_shutdown +            alias main_loop_begin ecore_main_loop_begin +            alias main_loop_quit ecore_main_loop_quit          end          #      end  | 
