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

Add ruby-dl

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2324 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ttate 2002-04-02 10:56:13 +00:00
parent 64b6406445
commit 7d711b817e
30 changed files with 5872 additions and 0 deletions

5
ext/dl/sample/getch.rb Normal file
View file

@ -0,0 +1,5 @@
require 'dl'
crtdll = DL::dlopen("crtdll")
getch = crtdll['_getch', 'L']
print(getch.call, "\n")