summaryrefslogtreecommitdiffstats
path: root/lib/efl/eina
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-04-27 06:18:35 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-04-27 06:18:35 +0200
commitdbab4c802acbcd62262efd44f5415285a39de011 (patch)
tree63629dfaf821397da8ff1884311f3a6ee4a9ec25 /lib/efl/eina
parent7c63402a0087554395b97f6edc6c4cb7f10f6320 (diff)
downloadffi-efl-dbab4c802acbcd62262efd44f5415285a39de011.zip
ffi-efl-dbab4c802acbcd62262efd44f5415285a39de011.tar.gz
move generated ffi files into lib/efl/ffi
Diffstat (limited to 'lib/efl/eina')
-rw-r--r--lib/efl/eina/eina_types-ffi.rb44
1 files changed, 0 insertions, 44 deletions
diff --git a/lib/efl/eina/eina_types-ffi.rb b/lib/efl/eina/eina_types-ffi.rb
deleted file mode 100644
index 2601ee3..0000000
--- a/lib/efl/eina/eina_types-ffi.rb
+++ /dev/null
@@ -1,44 +0,0 @@
-#! /usr/bin/env ruby
-# -*- coding: UTF-8 -*-
-#
-require 'efl/ffi'
-#
-module Efl
- #
- module Eina
- def self.method_missing m, *args, &block
- return Efl::API.send 'eina_'+m.to_s, *args, &block
- end
- end
- #
- module API
- #
- #
- ffi_lib 'eina'
- #
- # ENUMS
- #
- # TYPEDEFS
- # typedef unsigned char Eina_Bool;
- typedef :bool, :eina_bool
- typedef :pointer, :eina_bool_p
- #
- # CALLBACKS
- # typedef int (*Eina_Compare_Cb) (const void *data1, const void *data2);
- callback :eina_compare_cb, [ :void_p, :void_p ], :int
- # typedef Eina_Bool (*Eina_Each_Cb) (const void *container, void *data, void *fdata);
- callback :eina_each_cb, [ :void_p, :void_p, :void_p ], :eina_bool
- # typedef void (*Eina_Free_Cb) (void *data);
- callback :eina_free_cb, [ :void_p ], :void
- #
- # FUNCTIONS
- fcts = [
- # EAPI extern const unsigned int eina_prime_table[];
- # FIXME
- ]
- #
- attach_fcts fcts
- end
-end
-#
-# EOF