mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
1684c23496
yet. [ruby-core:30095] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27685 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
27 lines
579 B
Ruby
27 lines
579 B
Ruby
require 'fiddle.so'
|
|
require 'fiddle/function'
|
|
require 'fiddle/closure'
|
|
require 'dl' unless Object.const_defined?(: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
|