summaryrefslogtreecommitdiffstats
path: root/lib/efl/ffi
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-04-27 06:27:47 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-04-27 06:27:47 +0200
commit94434474b1c0edd25e0e2423635c6bc12e574e18 (patch)
tree260fa051878a1d015500edd0988f9bb41ce08710 /lib/efl/ffi
parentdbab4c802acbcd62262efd44f5415285a39de011 (diff)
downloadffi-efl-94434474b1c0edd25e0e2423635c6bc12e574e18.zip
ffi-efl-94434474b1c0edd25e0e2423635c6bc12e574e18.tar.gz
module Efl::API renamed to Efl::FFI
Diffstat (limited to 'lib/efl/ffi')
-rw-r--r--lib/efl/ffi/ecore.rb4
-rw-r--r--lib/efl/ffi/ecore_evas.rb4
-rw-r--r--lib/efl/ffi/ecore_getopt.rb4
-rw-r--r--lib/efl/ffi/ecore_input.rb4
-rw-r--r--lib/efl/ffi/eet.rb4
-rw-r--r--lib/efl/ffi/eina_types.rb4
-rw-r--r--lib/efl/ffi/elementary.rb4
-rw-r--r--lib/efl/ffi/evas.rb4
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'