diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-04-14 07:33:39 +0200 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-04-14 07:33:39 +0200 | 
| commit | 6a98ff745ba0e8ddb71375396465b5add8e736c9 (patch) | |
| tree | 655879f4745eb8dcf00601a14a8f83ef12c90d2d /lib/e17 | |
| parent | c73ec67bdca66b39b1bcea63434c560f21af2d4a (diff) | |
| download | ffi-efl-6a98ff745ba0e8ddb71375396465b5add8e736c9.zip ffi-efl-6a98ff745ba0e8ddb71375396465b5add8e736c9.tar.gz  | |
update evas to follow FFIHelper API
Diffstat (limited to 'lib/e17')
| -rw-r--r-- | lib/e17/evas.rb | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/e17/evas.rb b/lib/e17/evas.rb index 07c5924..1b54742 100644 --- a/lib/e17/evas.rb +++ b/lib/e17/evas.rb @@ -15,7 +15,7 @@ module E17          #          callback :evas_async_events_put_cb, [:pointer, :int, :pointer], :void          # -        @fcts = [ +        fcts = [              # http://docs.enlightenment.org/auto/evas/group__Evas__Group.html              [ :evas_init, [], :int],              [ :evas_shutdown, [], :int], @@ -25,9 +25,9 @@ module E17              [ :evas_async_events_put, [:pointer, :int, :pointer, :evas_async_events_put_cb], :bool],          ]          # -        attach_fcts +        attach_fcts fcts          # -        create_aliases 'evas_'.length +        create_aliases 'evas_'.length, fcts          #      end  end  | 
