1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/fiddle/*: Adding fiddle library to wrap libffi

* test/fiddle/*: testing fiddle extension
* ext/dl/lib/dl.rb: Requiring fiddle if it is available
* ext/dl/lib/dl/callback.rb: using Fiddle if it is available
* ext/dl/lib/dl/func.rb: ditto

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27640 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tenderlove 2010-05-06 06:59:24 +00:00
parent ca3c007f05
commit 4bada8b864
22 changed files with 1084 additions and 71 deletions

27
ext/fiddle/lib/fiddle.rb Normal file
View file

@ -0,0 +1,27 @@
require 'fiddle.so'
require 'fiddle/function'
require 'fiddle/closure'
require 'dl'
module Fiddle
Pointer = DL::CPtr
if WINDOWS
def self.win32_last_error
Thread.current[:__FIDDLE_WIN32_LAST_ERROR__]
end
def self.win32_last_error= error
Thread.current[:__FIDDLE_WIN32_LAST_ERROR__] = error
end
end
def self.last_error
Thread.current[:__FIDDLE_LAST_ERROR__]
end
def self.last_error= error
Thread.current[:__DL2_LAST_ERROR__] = error
Thread.current[:__FIDDLE_LAST_ERROR__] = error
end
end