diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-05-04 23:42:07 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-05-04 23:42:07 +0200 |
commit | e4baccaefd209a25daa3ff8d5277fe86aca1d379 (patch) | |
tree | eb2744b7a8624a7538cb0224d40879074c819653 /lib/efl/native/eina.rb | |
parent | 3974ea1fb3734cbf4150c759eebdf8a93d77dc8b (diff) | |
download | ffi-efl-e4baccaefd209a25daa3ff8d5277fe86aca1d379.zip ffi-efl-e4baccaefd209a25daa3ff8d5277fe86aca1d379.tar.gz |
FFI are in separate namespaces (Efl::Evas::Native), ruby classes are in upper level (Efl::Evas)seperate-natives
Diffstat (limited to 'lib/efl/native/eina.rb')
-rw-r--r-- | lib/efl/native/eina.rb | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/lib/efl/native/eina.rb b/lib/efl/native/eina.rb new file mode 100644 index 0000000..8e9c892 --- /dev/null +++ b/lib/efl/native/eina.rb @@ -0,0 +1,51 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/ffi' +# +module Efl + # + module Eina + # + def self.method_missing m, *args, &block + sym = 'eina_'+m.to_s + raise NameError.new "#{self.name}.#{sym} (#{m})" if not Efl::Eina::Native.respond_to? sym + self.module_eval "def self.#{m} *args, █ r=Efl::Eina::Native.#{sym}(*args); yield r if block_given?; r; end" + self.send m, *args, &block + end + # + module Native + # + extend Efl::FFIHelper + # + ffi_lib 'eina' + # + # ENUMS + # + # TYPEDEFS + # typedef struct _Eina_Version Eina_Version; + typedef :pointer, :eina_version + # + # CALLBACKS + # + # FUNCTIONS + fcts = [ + # EAPI extern Eina_Version *eina_version; + # FIXME + # EAPI int eina_init(void); + [ :eina_init, [ ], :int ], + # EAPI int eina_shutdown(void); + [ :eina_shutdown, [ ], :int ], + # EAPI int eina_threads_init(void); + [ :eina_threads_init, [ ], :int ], + # EAPI int eina_threads_shutdown(void); + [ :eina_threads_shutdown, [ ], :int ], + ] + # + attach_fcts fcts + # + end + end +end +# +# EOF |