2010-05-06 06:59:24 +00:00
|
|
|
require 'fiddle.so'
|
|
|
|
require 'fiddle/function'
|
|
|
|
require 'fiddle/closure'
|
2010-05-08 17:59:46 +00:00
|
|
|
require 'dl' unless Object.const_defined?(:DL)
|
2010-05-06 06:59:24 +00:00
|
|
|
|
|
|
|
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
|