up vote 3 down vote favorite
share [g+] share [fb]

I want to access functions within a DLL using Ruby. I want to use the low-level access of C while still retaining the simplicity of writing Ruby code. How do I accomplish this?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Have a look at Win32API. It's a fairly easy (but arcane) interface to the Windows 32 API, or DLLs.

Documentation is here, some examples here. To give you a taste:

require "Win32API"    
def get_computer_name
  name = " " * 128
  size = "128"
  Win32API.new('kernel32', 'GetComputerName', ['P', 'P'], 'I').call(name, size)  
  name.unpack("A*")  
end
link|improve this answer
3  
It works quite good, unless your DLL has parameters that Win32API can't handle (like doubles). Then you'll enter the Array.unpack nightmare – SztupY Jun 22 '09 at 0:41
feedback

I think you can use ruby/dl http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/95a483230caf3d39

or ffi makes it easier and more cross VM friendly:

https://github.com/ffi/ffi/wiki/Windows-Examples

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.