diff options
Diffstat (limited to 'lib/efl/ffi')
-rw-r--r-- | lib/efl/ffi/ecore.rb | 4 | ||||
-rw-r--r-- | lib/efl/ffi/ecore_evas.rb | 4 | ||||
-rw-r--r-- | lib/efl/ffi/ecore_getopt.rb | 4 | ||||
-rw-r--r-- | lib/efl/ffi/ecore_input.rb | 4 | ||||
-rw-r--r-- | lib/efl/ffi/eet.rb | 4 | ||||
-rw-r--r-- | lib/efl/ffi/eina_types.rb | 4 | ||||
-rw-r--r-- | lib/efl/ffi/elementary.rb | 4 | ||||
-rw-r--r-- | lib/efl/ffi/evas.rb | 4 |
8 files changed, 16 insertions, 16 deletions
diff --git a/lib/efl/ffi/ecore.rb b/lib/efl/ffi/ecore.rb index 394af34..ddd41b5 100644 --- a/lib/efl/ffi/ecore.rb +++ b/lib/efl/ffi/ecore.rb @@ -7,11 +7,11 @@ module Efl # module Ecore def self.method_missing m, *args, &block - return Efl::API.send 'ecore_'+m.to_s, *args, &block + return Efl::FFI.send 'ecore_'+m.to_s, *args, &block end end # - module API + module FFI # # ffi_lib 'ecore' diff --git a/lib/efl/ffi/ecore_evas.rb b/lib/efl/ffi/ecore_evas.rb index 948cae7..5fec9be 100644 --- a/lib/efl/ffi/ecore_evas.rb +++ b/lib/efl/ffi/ecore_evas.rb @@ -7,11 +7,11 @@ module Efl # module Ecore_evas def self.method_missing m, *args, &block - return Efl::API.send 'ecore_'+m.to_s, *args, &block + return Efl::FFI.send 'ecore_'+m.to_s, *args, &block end end # - module API + module FFI # # ffi_lib 'ecore' diff --git a/lib/efl/ffi/ecore_getopt.rb b/lib/efl/ffi/ecore_getopt.rb index c66312d..40cd81d 100644 --- a/lib/efl/ffi/ecore_getopt.rb +++ b/lib/efl/ffi/ecore_getopt.rb @@ -7,11 +7,11 @@ module Efl # module EcoreGetopt def self.method_missing m, *args, &block - return Efl::API.send 'ecore_getopt_'+m.to_s, *args, &block + return Efl::FFI.send 'ecore_getopt_'+m.to_s, *args, &block end end # - module API + module FFI # # ffi_lib 'ecore' diff --git a/lib/efl/ffi/ecore_input.rb b/lib/efl/ffi/ecore_input.rb index a98e927..e88e7fb 100644 --- a/lib/efl/ffi/ecore_input.rb +++ b/lib/efl/ffi/ecore_input.rb @@ -7,11 +7,11 @@ module Efl # module EcoreInput def self.method_missing m, *args, &block - return Efl::API.send 'ecore_'+m.to_s, *args, &block + return Efl::FFI.send 'ecore_'+m.to_s, *args, &block end end # - module API + module FFI # # ffi_lib 'ecore' diff --git a/lib/efl/ffi/eet.rb b/lib/efl/ffi/eet.rb index 37602c9..5e78e09 100644 --- a/lib/efl/ffi/eet.rb +++ b/lib/efl/ffi/eet.rb @@ -7,11 +7,11 @@ module Efl # module Eet def self.method_missing m, *args, &block - return Efl::API.send 'eet_'+m.to_s, *args, &block + return Efl::FFI.send 'eet_'+m.to_s, *args, &block end end # - module API + module FFI # # ffi_lib 'eet' diff --git a/lib/efl/ffi/eina_types.rb b/lib/efl/ffi/eina_types.rb index 2601ee3..5a5dd4d 100644 --- a/lib/efl/ffi/eina_types.rb +++ b/lib/efl/ffi/eina_types.rb @@ -7,11 +7,11 @@ module Efl # module Eina def self.method_missing m, *args, &block - return Efl::API.send 'eina_'+m.to_s, *args, &block + return Efl::FFI.send 'eina_'+m.to_s, *args, &block end end # - module API + module FFI # # ffi_lib 'eina' diff --git a/lib/efl/ffi/elementary.rb b/lib/efl/ffi/elementary.rb index 5d37153..7859ad8 100644 --- a/lib/efl/ffi/elementary.rb +++ b/lib/efl/ffi/elementary.rb @@ -7,11 +7,11 @@ module Efl # module Elm def self.method_missing m, *args, &block - return Efl::API.send 'elm_'+m.to_s, *args, &block + return Efl::FFI.send 'elm_'+m.to_s, *args, &block end end # - module API + module FFI # # ffi_lib 'libelementary-ver-pre-svn-09.so.0' diff --git a/lib/efl/ffi/evas.rb b/lib/efl/ffi/evas.rb index 689daf2..63635b4 100644 --- a/lib/efl/ffi/evas.rb +++ b/lib/efl/ffi/evas.rb @@ -7,11 +7,11 @@ module Efl # module Evas def self.method_missing m, *args, &block - return Efl::API.send 'evas_'+m.to_s, *args, &block + return Efl::FFI.send 'evas_'+m.to_s, *args, &block end end # - module API + module FFI # # ffi_lib 'evas' |