J Jenie888 Member Jun 21, 2002 #1 I want to create a handle to a stright C DLL. I am not getting the sytax correct though. Does anyone have any ideas on this?
I want to create a handle to a stright C DLL. I am not getting the sytax correct though. Does anyone have any ideas on this?
M MurrayH Member Jun 24, 2002 #2 This use to work on UNIX for me: define new shared variable c# as int. c# = 1. procedure wubble external "/tmp/a.so" CDECL : define input parameter X as LONG. define return parameter Y as LONG. end. def var a as int initial 5. def var b as int. run wubble (input a, output b). display a b c#.
This use to work on UNIX for me: define new shared variable c# as int. c# = 1. procedure wubble external "/tmp/a.so" CDECL : define input parameter X as LONG. define return parameter Y as LONG. end. def var a as int initial 5. def var b as int. run wubble (input a, output b). display a b c#.