diff options
Diffstat (limited to 'lib/efl/native/elm/elm_need.rb')
-rw-r--r-- | lib/efl/native/elm/elm_need.rb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/efl/native/elm/elm_need.rb b/lib/efl/native/elm/elm_need.rb new file mode 100644 index 0000000..7e055b0 --- /dev/null +++ b/lib/efl/native/elm/elm_need.rb @@ -0,0 +1,41 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/native' +require 'efl/native/elementary' +# +module Efl + # + module ElmNeed + # + FCT_PREFIX = 'elm_need_' unless const_defined? :FCT_PREFIX + # + def self.method_missing meth, *args, &block + sym = Efl::MethodResolver.resolve self, meth, FCT_PREFIX + self.send sym, *args, &block + end + # + end + # + module Native + # + ffi_lib 'elementary-ver-pre-svn-09.so.0' + # + # FUNCTIONS + fcts = [ + # EAPI Eina_Bool elm_need_efreet(void); + [ :elm_need_efreet, [ ], :bool ], + # EAPI Eina_Bool elm_need_e_dbus(void); + [ :elm_need_e_dbus, [ ], :bool ], + # EAPI Eina_Bool elm_need_ethumb(void); + [ :elm_need_ethumb, [ ], :bool ], + # EAPI Eina_Bool elm_need_web(void); + [ :elm_need_web, [ ], :bool ], + ] + # + attach_fcts fcts + # + end +end +# +# EOF |