Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] DLL interfacing

From: robert::muench::robertmuench::de at: 1-Feb-2003 14:20

Hi, I'm trying to use a DLL that has a function signature like this: xyz_version(&major, &minor) So the paramters given to the function will be altered by VERISON and contain the result after the function call. I tried: version: make routine! [a [integer!] b [integer!]] dll xyz_version major: minor: 0 version major minor print [major minor]
>> 0 0
So the results are not returned with this method. Any idea how this can be done? Robert