Method: Efl::Native.attach_fcts
- Defined in:
- lib/efl/native.rb
.attach_fcts(fcts) ⇒ Object
44 45 46 47 48 49 50 51 52 |
# File 'lib/efl/native.rb', line 44 def self.attach_fcts fcts fcts.each do |func| begin attach_function(*func) rescue Object => e puts "Could not attach #{func} #{e.}" end end end |