diff options
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); |