summaryrefslogtreecommitdiffstats
path: root/lib/e17/eina.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/e17/eina.rb')
-rw-r--r--lib/e17/eina.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/e17/eina.rb b/lib/e17/eina.rb
deleted file mode 100644
index 9309cfe..0000000
--- a/lib/e17/eina.rb
+++ /dev/null
@@ -1,26 +0,0 @@
-#! /usr/bin/env ruby
-# -*- coding: UTF-8 -*-
-#
-require 'e17/ffi_helper'
-#
-module E17
- module EINA
- #
- extend FFIHelper
- extend FFI::Library
- #
- ffi_lib 'eina'
- #
- fcts = [
- [ :eina_init, [], :int],
- [ :eina_shutdown, [], :int],
- ]
- #
- attach_fcts fcts
- #
- create_aliases 'eina_'.length, fcts
- #
- end
-end
-#
-# EOF