How to call DLL function with String Array and receive Double Array data?
I had read the content of charter 14 in scripting guide, and did some test about my C function.
The attachment testdll.jsl works fine with simple data, like AnsiString (in and out). In the log I can see:---
dll_obj = DLL("C:\Users\charlie.chu\Documents\JMP\JSL\jmptest2.dll");
[CDECL] AnsiString testFunc(AnsiString);
result = "ABC";
---
My question is, if I want to sent data like {"1.2, 2.3, 3.4", "5.6, ...
gav2013