From: Jerome David Sallinger Date: 2011-12-15T10:26:02+09:00 Subject: Newbie: Calling methods from a dll I am trying to call methods from a dll. I know this works with Python. I want to rubify it. My code is as follows: require 'dl' require 'dl/import' h_rrcApi = DL.dlopen("mydll.Dll") h_rrcApi.mymethod(10, 120, 4, 208) when I run this i get the error: CreateCell_DeleteCell.rb:32:in `
': undefined method `mymethod' for # (NoMethodError) Any ideas where im going wrong would be much appreciated. Jerome -- Posted via http://www.ruby-forum.com/.