diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-08-18 10:44:36 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-08-18 10:44:36 +0200 |
commit | 2582ab8b3121e14faf3a53e89be6a2a575c0042f (patch) | |
tree | 31e6d55a97262d95a72ce7cbf5e9269497e9b78f /lib/efl/native/ecore.rb | |
parent | 262ffbd70342382945ad2a0698bc13f4620df4e3 (diff) | |
download | ffi-efl-2582ab8b3121e14faf3a53e89be6a2a575c0042f.zip ffi-efl-2582ab8b3121e14faf3a53e89be6a2a575c0042f.tar.gz |
Update ecore and ecore_evas native API
Diffstat (limited to 'lib/efl/native/ecore.rb')
-rw-r--r-- | lib/efl/native/ecore.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/efl/native/ecore.rb b/lib/efl/native/ecore.rb index 1bfd2c3..608a706 100644 --- a/lib/efl/native/ecore.rb +++ b/lib/efl/native/ecore.rb @@ -182,8 +182,10 @@ module Efl [ :ecore_main_loop_begin, [ ], :void ], # EAPI void ecore_main_loop_quit(void); [ :ecore_main_loop_quit, [ ], :void ], - # EAPI void ecore_main_loop_thread_safe_call(Ecore_Cb callback, void *data); - [ :ecore_main_loop_thread_safe_call, [ :ecore_cb, :void_p ], :void ], + # EAPI void ecore_main_loop_thread_safe_call_async(Ecore_Cb callback, void *data); + [ :ecore_main_loop_thread_safe_call_async, [ :ecore_cb, :void_p ], :void ], + # EAPI void *ecore_main_loop_thread_safe_call_sync(Ecore_Cb callback, void *data); + [ :ecore_main_loop_thread_safe_call_sync, [ :ecore_cb, :void_p ], :void_p ], # EAPI Ecore_Event_Handler *ecore_event_handler_add(int type, Ecore_Event_Handler_Cb func, const void *data); [ :ecore_event_handler_add, [ :int, :ecore_event_handler_cb, :void_p ], :ecore_event_handler_p ], # EAPI void *ecore_event_handler_del(Ecore_Event_Handler *event_handler); |