#! /usr/bin/env ruby # -*- coding: UTF-8 -*- # require 'efl/native' require 'efl/native/elementary' # module Efl # module ElmCache # FCT_PREFIX = 'elm_cache_' 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' # # FUNCTIONS fcts = [ # EAPI void elm_cache_all_flush(void); [ :elm_cache_all_flush, [ ], :void ], ] # attach_fcts fcts # end end # # EOF