summaryrefslogtreecommitdiff
path: root/ext/dl/win32
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-13 14:37:11 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-13 14:37:11 +0000
commit1fb7ce63031d2a2180b2706dd2185c741b0ff365 (patch)
tree985de2824e0df6ace9009bae1d3093405f917a35 /ext/dl/win32
parent2a2cc2e9c41718b29843ddbab8addd95f0371a09 (diff)
* ext/dl/win32/lib/Win32API.rb (Win32API#initialize): DL.dlopen
raises DLError. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22291 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/dl/win32')
-rw-r--r--ext/dl/win32/lib/Win32API.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/dl/win32/lib/Win32API.rb b/ext/dl/win32/lib/Win32API.rb
index b642e0c8fe..97f6c5135b 100644
--- a/ext/dl/win32/lib/Win32API.rb
+++ b/ext/dl/win32/lib/Win32API.rb
@@ -12,6 +12,8 @@ class Win32API
@proto = [import].join.tr("VPpNnLlIi", "0SSI").sub(/^(.)0*$/, '\1')
handle = DLL[dllname] ||= DL.dlopen(dllname)
@func = DL::CFunc.new(handle[func], TYPEMAP[export.tr("VPpNnLlIi", "0SSI")], func)
+ rescue DL::DLError => e
+ raise LoadError, e.message, e.backtrace
end
def call(*args)