blob: 8af204211e0834acf11d2f6510ac5ad027a1b378 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'ffi'
#
module Efl
#
module API
#
extend FFI::Library
#
def attach_fcts fcts
fcts.each do |func|
begin
attach_function *func
rescue Object => e
puts "Could not attach #{func} #{e.message}"
end
end
end
module_function :attach_fcts
#
typedef :pointer, :int_p
typedef :pointer, :uint_p
typedef :pointer, :void_p
typedef :pointer, :uchar_p
typedef :pointer, :float_p
typedef :pointer, :double_p
typedef :pointer, :string_array
typedef :pointer, :string_array_p
#
typedef :pointer, :eina_list_p
typedef :pointer, :eina_iterator_p
typedef :pointer, :eina_accessor_p
typedef :pointer, :evas_p
typedef :pointer, :evas_object_p
#
end
#
end
#
require 'efl/eina/eina_types-ffi'
#
# EOF
|