vote up 2 vote down star

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?

flag

2 Answers

vote up 3 vote down check

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|flag
2  
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 at 0:41
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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