summaryrefslogtreecommitdiffstats
path: root/lib/efl/native/ecore.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-08-18 10:59:58 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-08-18 10:59:58 +0200
commitfdf076d4f01a2562fbd46dd8bf7f2fa48458d930 (patch)
treee8c2d381b7afdc9cf10f64cc5f65779b2f1a3b9b /lib/efl/native/ecore.rb
parentdd64078d4cd45a93201991e79b487bc4f92af758 (diff)
downloadffi-efl-fdf076d4f01a2562fbd46dd8bf7f2fa48458d930.zip
ffi-efl-fdf076d4f01a2562fbd46dd8bf7f2fa48458d930.tar.gz
Update ecore, eina, evas native API
Diffstat (limited to 'lib/efl/native/ecore.rb')
-rw-r--r--lib/efl/native/ecore.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/efl/native/ecore.rb b/lib/efl/native/ecore.rb
index 608a706..80859e0 100644
--- a/lib/efl/native/ecore.rb
+++ b/lib/efl/native/ecore.rb
@@ -184,8 +184,12 @@ module Efl
[ :ecore_main_loop_quit, [ ], :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 void *ecore_main_loop_thread_safe_call_sync(Ecore_Data_Cb callback, void *data);
+ [ :ecore_main_loop_thread_safe_call_sync, [ :ecore_data_cb, :void_p ], :void_p ],
+ # EAPI Eina_Bool ecore_thread_main_loop_begin(void);
+ [ :ecore_thread_main_loop_begin, [ ], :eina_bool ],
+ # EAPI void ecore_thread_main_loop_end(void);
+ [ :ecore_thread_main_loop_end, [ ], :void ],
# 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);