summaryrefslogtreecommitdiffstats
path: root/lib/efl/ffi/eina.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/efl/ffi/eina.rb')
-rw-r--r--lib/efl/ffi/eina.rb48
1 files changed, 0 insertions, 48 deletions
diff --git a/lib/efl/ffi/eina.rb b/lib/efl/ffi/eina.rb
deleted file mode 100644
index 8ecfd4e..0000000
--- a/lib/efl/ffi/eina.rb
+++ /dev/null
@@ -1,48 +0,0 @@
-#! /usr/bin/env ruby
-# -*- coding: UTF-8 -*-
-#
-require 'efl/ffi'
-#
-module Efl
- #
- module Eina
- #
- extend Efl::FFIHelper
- #
- def self.method_missing m, *args, &block
- sym = 'eina_'+m.to_s
- raise NameError.new "#{self.name}.#{sym} (#{m})" if not self.respond_to? sym
- self.module_eval "def self.#{m} *args, █ r=self.#{sym}(*args); yield r if block_given?; r; end"
- self.send sym, *args, &block
- end
- #
- ffi_lib 'eina'
- #
- # ENUMS
- #
- # TYPEDEFS
- # typedef struct _Eina_Version Eina_Version;
- typedef :pointer, :eina_version
- #
- # CALLBACKS
- #
- # FUNCTIONS
- fcts = [
- # EAPI extern Eina_Version *eina_version;
- # FIXME
- # EAPI int eina_init(void);
- [ :eina_init, [ ], :int ],
- # EAPI int eina_shutdown(void);
- [ :eina_shutdown, [ ], :int ],
- # EAPI int eina_threads_init(void);
- [ :eina_threads_init, [ ], :int ],
- # EAPI int eina_threads_shutdown(void);
- [ :eina_threads_shutdown, [ ], :int ],
- ]
- #
- attach_fcts fcts
- #
- end
-end
-#
-# EOF