summaryrefslogtreecommitdiffstats
path: root/lib/e17/ffi.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/e17/ffi.rb')
-rw-r--r--lib/e17/ffi.rb44
1 files changed, 0 insertions, 44 deletions
diff --git a/lib/e17/ffi.rb b/lib/e17/ffi.rb
deleted file mode 100644
index e19a90a..0000000
--- a/lib/e17/ffi.rb
+++ /dev/null
@@ -1,44 +0,0 @@
-#! /usr/bin/env ruby
-# -*- coding: UTF-8 -*-
-#
-require 'ffi'
-#
-module E17
- #
- 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 'e17/eina/eina_types-ffi'
-#
-# EOF