summaryrefslogtreecommitdiffstats
path: root/lib/efl
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-04-11 23:04:48 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-04-11 23:04:48 +0200
commit9c39aee51c91457ee9177fabca8a6689a8d8d05a (patch)
treee32ffb54a178204847cf338ba765081bc8f803f4 /lib/efl
parent455dd7ecbbe137fef1ff5507055541350a924382 (diff)
downloadffi-efl-9c39aee51c91457ee9177fabca8a6689a8d8d05a.zip
ffi-efl-9c39aee51c91457ee9177fabca8a6689a8d8d05a.tar.gz
update eet spec
Diffstat (limited to 'lib/efl')
-rw-r--r--lib/efl/ecore.rb4
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