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

* ext/fiddle/lib/fiddle.rb: [DOC] Document Fiddle.dlopen(nil)

* ext/fiddle/handle.c: [DOC] Document Fiddle::Handle.new(nil)


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42184 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2013-07-26 04:11:27 +00:00
parent 8948280c67
commit 5cbfd7509c
3 changed files with 18 additions and 3 deletions

View file

@ -32,6 +32,11 @@ module Fiddle
# Creates a new handler that opens +library+, and returns an instance of
# Fiddle::Handle.
#
# If +nil+ is given for the +library+, Fiddle::Handle::DEFAULT is used, which
# usually means +libc+.
#
# libc = Fiddle.dlopen(nil)
#
# See Fiddle::Handle.new for more.
def dlopen library
Fiddle::Handle.new library