07-20-2020 02:09 PM
Hi,
I have a simple VI that I compiled to a c-DLL. That VI outputs 1 dimensional array of strings. I can't not find a recipe describing how to read that array of strings using python ctypes library.
Any help would be much appreciated.
Thank you
09-15-2020 04:56 AM
That is not how you'd usually do it.
The problem with this scheme is that it's unclear who will release the data.
You'd usually allocate memory (a sufficiently large string) in Python, and fill this data in LabVIEW.